mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-20 20:23:03 +02:00
21 lines
292 B
C
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__*/
|