mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-20 20:23:03 +02:00
1906060bc6
* project was reorganized - now there is possibility to work simultaneously on battle AI and general AI
18 lines
227 B
C++
18 lines
227 B
C++
#include "GeneralAI.h"
|
|
|
|
using namespace GeniusAI::GeneralAI;
|
|
|
|
CGeneralAI::CGeneralAI()
|
|
: m_cb(NULL)
|
|
{
|
|
}
|
|
|
|
CGeneralAI::~CGeneralAI()
|
|
{
|
|
}
|
|
|
|
void CGeneralAI::init(ICallback *CB)
|
|
{
|
|
assert(CB != NULL);
|
|
m_cb = CB;
|
|
} |