1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-05 13:04:54 +02:00
vcmi/AI/EmptyAI/CEmptyAI.cpp

22 lines
425 B
C++
Raw Normal View History

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