2007-06-09 18:14:41 +00:00
|
|
|
#ifndef CGAMEINFO_H
|
|
|
|
#define CGAMEINFO_H
|
|
|
|
|
|
|
|
#include "CSpellHandler.h"
|
|
|
|
#include "CAbilityHandler.h"
|
|
|
|
#include "CCreaturehandler.h"
|
|
|
|
#include "CArtHandler.h"
|
|
|
|
#include "CHeroHandler.h"
|
|
|
|
#include "CAmbarCendamo.h"
|
2007-06-10 18:04:15 +00:00
|
|
|
#include "CBuildingHandler.h"
|
2007-06-11 17:21:27 +00:00
|
|
|
#include "CObjectHandler.h"
|
2007-06-20 17:35:13 +00:00
|
|
|
#include "CMusicHandler.h"
|
2007-06-22 16:36:05 +00:00
|
|
|
#include "CSemiLodHandler.h"
|
2007-06-09 18:14:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
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;
|
2007-06-10 18:04:15 +00:00
|
|
|
CBuildingHandler * buildh;
|
2007-06-11 17:21:27 +00:00
|
|
|
CObjectHandler * objh;
|
2007-06-20 17:35:13 +00:00
|
|
|
CMusicHandler * mush;
|
2007-06-22 16:36:05 +00:00
|
|
|
CSemiLodHandler * sspriteh;
|
2007-06-09 18:14:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //CGAMEINFO_H
|