mirror of
https://github.com/vcmi/vcmi.git
synced 2025-02-03 13:01:33 +02:00
97f4fbcce8
Support for AIs I'll soon after infoboxes for towns (if there won't anything urgent)
12 lines
254 B
C++
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" |