1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-03 13:01:33 +02:00
vcmi/AI/EmptyAI/CEmptyAI.h
Michał W. Urbańczyk 97f4fbcce8 First EmptyAI. It's not used yet, but it can be compiled.
Support for AIs I'll soon after infoboxes for towns (if there won't anything urgent)
2007-10-16 22:41:45 +00:00

12 lines
254 B
C++

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