1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-01 00:45:26 +02:00
Files
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(CCallback * CB)
{
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 &)
{
}