1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-28 03:57:02 +02:00
vcmi/AI/EmptyAI/CEmptyAI.cpp
2007-12-06 18:32:06 +00:00

22 lines
425 B
C++

#include "CEmptyAI.h"
#include <iostream>
void CEmptyAI::init(ICallback * CB)
{
cb = CB;
human=false;
playerID=cb->getMyColor();
serialID=cb->getMySerial();
std::cout << "EmptyAI initialized." << std::endl;
}
void CEmptyAI::yourTurn()
{
}
void CEmptyAI::heroKilled(const CHeroInstance *)
{
}
void CEmptyAI::heroCreated(const CHeroInstance *)
{
}
void CEmptyAI::heroMoved(const HeroMoveDetails &)
{
}