1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00
vcmi/client/CGameInfo.cpp

42 lines
838 B
C++
Raw Normal View History

/*
* CGameInfo.cpp, part of VCMI engine
*
* 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
*
*/
#include "StdInc.h"
#include "CGameInfo.h"
2017-09-05 13:31:34 +02:00
#include "../lib/CSkillHandler.h"
#include "../lib/CGeneralTextHandler.h"
#include "../lib/VCMI_Lib.h"
const CGameInfo * CGI;
CClientState * CCS = nullptr;
CServerHandler * CSH;
CGameInfo::CGameInfo()
{
2016-11-27 16:48:18 +02:00
generaltexth = nullptr;
mh = nullptr;
2016-11-27 16:48:18 +02:00
townh = nullptr;
}
void CGameInfo::setFromLib()
{
modh = VLC->modh;
generaltexth = VLC->generaltexth;
arth = VLC->arth;
creh = VLC->creh;
townh = VLC->townh;
heroh = VLC->heroh;
objh = VLC->objh;
spellh = VLC->spellh;
2017-08-25 03:35:02 +02:00
skillh = VLC->skillh;
objtypeh = VLC->objtypeh;
}