Rewritten man page. Removed large dependencies by writing directly for man.

This commit is contained in:
Tiehuis
2015-02-22 16:08:11 +13:00
parent c8e55ed6e9
commit d8cef1def4
3 changed files with 60 additions and 18 deletions

View File

@@ -5,22 +5,7 @@
void print_usage(void)
{
printf(
"usage: 2048 [-cCaArh] [-g <goal>] [-b <rate>] [-s <size>]\n"
"\n"
"controls\n"
" hjkl movement keys\n"
" q quit current game\n"
"\n"
"options\n"
" -s <size> set the grid side lengths\n"
" -b <rate> set the block spawn rate\n"
" -g <goal> set a new goal (default 2048)\n"
" -a enable animations (default)\n"
" -A disable animations\n"
" -c enable color support\n"
" -C disable color support (default)\n"
);
printf("usage: 2048 [-cCaArh] [-s SIZE] [-b RATE] [-g GOAL]\n");
}