mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-30 08:57:00 +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__*/ |