1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-20 20:23:03 +02:00
vcmi/AI/GeniusAI/GeneralAI.h
ambtrip 1906060bc6 GeniusAI:
* project was reorganized - now there is possibility to work simultaneously on battle AI and general AI
2009-05-10 08:15:30 +00:00

21 lines
292 B
C++

#ifndef __GENERAL_AI_H__
#define __GENERAL_AI_H__
#include "Common.h"
namespace GeniusAI { namespace GeneralAI {
class CGeneralAI
{
public:
CGeneralAI();
~CGeneralAI();
void init(ICallback* CB);
private:
ICallback *m_cb;
};
}}
#endif/*__GENERAL_AI_H__*/