diff options
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r-- | src/game/game.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp index e2ac514..7b0674c 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -178,6 +178,8 @@ namespace game { ~unit_soldier_t(void) {}; void render_to(render::state_t *render); + void target_and_attack(void); + void on_think(void); void on_spawn(void) {}; void on_wake(void) {}; @@ -190,6 +192,8 @@ namespace game { ~unit_spider_t(void) {}; void render_to(render::state_t *render); + void target_and_attack(void); + void on_think(void); void on_spawn(void) {}; void on_wake(void); |