mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-14 02:33:51 +02:00
17 lines
451 B
C++
17 lines
451 B
C++
#include "../../AI_Base.h"
|
|
|
|
class CEmptyAI : public CGlobalAI
|
|
{
|
|
ICallback * cb;
|
|
public:
|
|
void init(ICallback * CB);
|
|
void yourTurn();
|
|
void heroKilled(const CHeroInstance *);
|
|
void heroCreated(const CHeroInstance *);
|
|
void heroMoved(const HeroMoveDetails &);
|
|
void heroPrimarySkillChanged(const CGHeroInstance * hero, int which, int val) {};
|
|
void tileRevealed(int3 pos){};
|
|
void tileHidden(int3 pos){};
|
|
};
|
|
|
|
#define NAME "EmptyAI 0.1" |