From 68d83476cacf077bb409f5dd1bafb99ac11d3e43 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sun, 17 Dec 2017 07:48:47 +0000 Subject: Rewrite the pyramids in AI code. --- src/game/game.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/game/game.hpp') 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); -- cgit