mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-12 02:28:11 +02:00
14 lines
303 B
C++
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" |