1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-05-21 22:33:43 +02:00
vcmi/lib/callback/CGlobalAI.h

24 lines
458 B
C++
Raw Normal View History

2024-01-01 16:37:48 +02:00
/*
* CGlobalAI.h, part of VCMI engine
2024-01-01 16:37:48 +02:00
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#include "CGameInterface.h"
2024-01-01 16:37:48 +02:00
VCMI_LIB_NAMESPACE_BEGIN
2024-01-01 16:37:48 +02:00
class DLL_LINKAGE CGlobalAI : public CGameInterface // AI class (to derivate)
2024-01-01 16:37:48 +02:00
{
public:
std::shared_ptr<Environment> env;
CGlobalAI();
2024-01-01 16:37:48 +02:00
};
2024-01-10 19:43:34 +02:00
VCMI_LIB_NAMESPACE_END