mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-16 02:47:36 +02:00
27 lines
577 B
C
27 lines
577 B
C
|
#ifndef CGAMEINFO_H
|
||
|
#define CGAMEINFO_H
|
||
|
|
||
|
#include "CSpellHandler.h"
|
||
|
#include "CAbilityHandler.h"
|
||
|
#include "CCreaturehandler.h"
|
||
|
#include "CArtHandler.h"
|
||
|
#include "CHeroHandler.h"
|
||
|
#include "CAmbarCendamo.h"
|
||
|
|
||
|
/*
|
||
|
CGameInfo class
|
||
|
for allowing different functions for modifying game informations
|
||
|
*/
|
||
|
class CGameInfo
|
||
|
{
|
||
|
public:
|
||
|
static CGameInfo * mainObj; //pointer to main CGameInfo object
|
||
|
CArtHandler * arth;
|
||
|
CHeroHandler * heroh;
|
||
|
CCreatureHandler * creh;
|
||
|
CAbilityHandler * abilh;
|
||
|
CSpellHandler * spellh;
|
||
|
CAmbarCendamo * ac;
|
||
|
};
|
||
|
|
||
|
#endif //CGAMEINFO_H
|