full implementation!

bug: level generation will generate nullptrs
This commit is contained in:
2024-07-15 00:09:14 -04:00
parent c3b974c83c
commit 6768d73d16
13 changed files with 407 additions and 46 deletions

View File

@ -39,7 +39,7 @@ game_command console_input::get_command() {
auto tmp = get_direction(cmd);
if (tmp != game_command_panic)
return tmp;
return (game_command)(tmp + move_north);
}
return game_command_pass;