2007-10-16 22:41:45 +00:00
|
|
|
#include "CEmptyAI.h"
|
2007-10-21 16:45:13 +00:00
|
|
|
#include <iostream>
|
2007-12-06 18:32:06 +00:00
|
|
|
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;
|
|
|
|
}
|
2007-10-16 22:41:45 +00:00
|
|
|
void CEmptyAI::yourTurn()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void CEmptyAI::heroKilled(const CHeroInstance *)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void CEmptyAI::heroCreated(const CHeroInstance *)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void CEmptyAI::heroMoved(const HeroMoveDetails &)
|
|
|
|
{
|
|
|
|
}
|