1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-05 13:04:54 +02:00
vcmi/AI/GeniusAI/GeneralAI.h
beegee1 7f04ed990b Major refactoring. First part: BattleInterface
Introduction of pre compiled headers,...
2011-12-13 21:23:17 +00:00

18 lines
224 B
C++

#pragma once
#include "Common.h"
namespace geniusai { namespace GeneralAI {
class CGeneralAI
{
public:
CGeneralAI();
~CGeneralAI();
void init(CCallback* CB);
private:
CCallback *m_cb;
};
}}