mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-12 02:28:11 +02:00
22 lines
396 B
C++
22 lines
396 B
C++
#include "CEmptyAI.h"
|
|
#include <iostream>
|
|
void CEmptyAI::init(CCallback * CB)
|
|
{
|
|
cb = CB;
|
|
human=false;
|
|
playerID=-1;
|
|
serialID=-1;
|
|
std::cout << "EmptyAI initialized." << std::endl;
|
|
}
|
|
void CEmptyAI::yourTurn()
|
|
{
|
|
}
|
|
void CEmptyAI::heroKilled(const CHeroInstance *)
|
|
{
|
|
}
|
|
void CEmptyAI::heroCreated(const CHeroInstance *)
|
|
{
|
|
}
|
|
void CEmptyAI::heroMoved(const HeroMoveDetails &)
|
|
{
|
|
} |