mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
d3f5a1c1e7
(trzeba dorobic jego zamykanie, zwrocenie infa, zwrot pamieci)
18 lines
553 B
C++
18 lines
553 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 showSelDialog(std::string text, std::vector<CSelectableComponent*> & components, int askID){};
|
|
void tileRevealed(int3 pos){};
|
|
void tileHidden(int3 pos){};
|
|
};
|
|
|
|
#define NAME "EmptyAI 0.1" |