CEmptyAI.h 451 B

1234567891011121314151617
  1. #include "../../AI_Base.h"
  2. class CEmptyAI : public CGlobalAI
  3. {
  4. ICallback * cb;
  5. public:
  6. void init(ICallback * CB);
  7. void yourTurn();
  8. void heroKilled(const CHeroInstance *);
  9. void heroCreated(const CHeroInstance *);
  10. void heroMoved(const HeroMoveDetails &);
  11. void heroPrimarySkillChanged(const CGHeroInstance * hero, int which, int val) {};
  12. void tileRevealed(int3 pos){};
  13. void tileHidden(int3 pos){};
  14. };
  15. #define NAME "EmptyAI 0.1"