1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-10 09:50:17 +02:00
vcmi/AI/EmptyAI/CEmptyAI.cpp

23 lines
444 B
C++
Raw Normal View History

#include "CEmptyAI.h"
2007-10-21 19:45:13 +03:00
#include <iostream>
void CEmptyAI::init(ICallback * CB)
2007-10-21 19:45:13 +03:00
{
cb = CB;
human=false;
2007-12-01 14:50:33 +02:00
playerID=cb->getMyColor();
serialID=cb->getMySerial();
2007-10-21 19:45:13 +03:00
std::cout << "EmptyAI initialized." << std::endl;
}
void CEmptyAI::yourTurn()
{
cb->endTurn();
}
void CEmptyAI::heroKilled(const CGHeroInstance *)
{
}
void CEmptyAI::heroCreated(const CGHeroInstance *)
{
}
void CEmptyAI::heroMoved(const HeroMoveDetails &)
{
}