Now have enemies chasing us around and implemented diagonal movement as a test but I kind of like it.

This commit is contained in:
Zed A. Shaw 2025-02-05 14:16:31 -05:00
parent d5301acab5
commit 14128ab10f
5 changed files with 37 additions and 14 deletions

View file

@ -50,6 +50,7 @@ namespace gui {
void IDLE(Event ev);
void END(Event ev);
bool can_move(Point move_to);
void keyboard();
void draw_weapon();
void draw_gui();
@ -57,5 +58,6 @@ namespace gui {
void mouse();
void generate_map();
bool active();
void run_systems();
};
}