1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-12 02:28:11 +02:00
vcmi/AI/EmptyAI/CEmptyAI.h
Michał W. Urbańczyk 04985fce2f * added #45, #44, #43
2007-10-21 16:45:13 +00:00

14 lines
303 B
C++

#include "../../AI_Base.h"
class CEmptyAI : public CGlobalAI
{
CCallback * cb;
public:
void init(CCallback * CB);
void yourTurn();
void heroKilled(const CHeroInstance *);
void heroCreated(const CHeroInstance *);
void heroMoved(const HeroMoveDetails &);
};
#define NAME "EmptyAI 0.1"