Test now can work the enemy AI to prototype behavior.

This commit is contained in:
Zed A. Shaw 2025-03-14 23:48:03 -04:00
parent db5a371766
commit 2815375836
6 changed files with 59 additions and 6 deletions

3
ai.hpp
View file

@ -27,6 +27,8 @@ namespace ai {
void set_state(std::string name, bool setting);
void update();
void dump();
};
struct AIManager {
@ -55,4 +57,5 @@ namespace ai {
/* Mostly used for debugging and validation. */
AIProfile* profile();
void check_valid_action(std::string name, std::string msg);
}