1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/CGameInfo.h

46 lines
1.1 KiB
C
Raw Normal View History

#ifndef CGAMEINFO_H
#define CGAMEINFO_H
#include "CSpellHandler.h"
#include "CAbilityHandler.h"
#include "CCreaturehandler.h"
#include "CArtHandler.h"
#include "CHeroHandler.h"
#include "CAmbarCendamo.h"
#include "CBuildingHandler.h"
#include "CObjectHandler.h"
2007-06-20 20:35:13 +03:00
#include "CMusicHandler.h"
#include "CSemiLodHandler.h"
#include "CDefObjInfoHandler.h"
2007-07-07 14:09:25 +03:00
#include "CLodHandler.h"
#include "CGeneralTextHandler.h"
#include "SDL.h"
#include <vector>
/*
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;
CBuildingHandler * buildh;
CObjectHandler * objh;
2007-06-20 20:35:13 +03:00
CMusicHandler * mush;
CSemiLodHandler * sspriteh;
CDefObjInfoHandler * dobjinfo;
CLodHandler * spriteh;
CLodHandler * bitmaph;
CGeneralTextHandler * generaltexth;
std::vector<SDL_Color> playerColors;
SDL_Color neutralColor;
};
#endif //CGAMEINFO_H