mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-04 22:14:25 +02:00
1) spell handler refactored to support modding in general way 2) imunnity icons moved to WoG as they depends on wog`s graphics 3) introduced new class template for handlers (todo: use this in other handlers) 4) save format changed 5) introduced "absolute immunity" - unaffected by "the Orb" etc. (todo: use it in config) 6) new format documented on wiki, added json schema. * more split of registertypes - fixes 32 mingw build
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
#include "StdInc.h"
|
|
#include "RegisterTypes.h"
|
|
|
|
#include "mapping/CMapInfo.h"
|
|
#include "StartInfo.h"
|
|
#include "BattleState.h"
|
|
#include "CGameState.h"
|
|
#include "mapping/CMap.h"
|
|
#include "CModHandler.h"
|
|
#include "CObjectHandler.h"
|
|
#include "CCreatureHandler.h"
|
|
#include "VCMI_Lib.h"
|
|
#include "CArtHandler.h"
|
|
#include "CHeroHandler.h"
|
|
#include "CSpellHandler.h"
|
|
#include "CTownHandler.h"
|
|
#include "mapping/CCampaignHandler.h"
|
|
#include "NetPacks.h"
|
|
#include "CDefObjInfoHandler.h"
|
|
|
|
|
|
template void registerTypesMapObjects1<CISer<CConnection>>(CISer<CConnection>& s);
|
|
template void registerTypesMapObjects1<COSer<CConnection>>(COSer<CConnection>& s);
|
|
template void registerTypesMapObjects1<CISer<CMemorySerializer>>(CISer<CMemorySerializer>& s);
|
|
template void registerTypesMapObjects1<COSer<CMemorySerializer>>(COSer<CMemorySerializer>& s);
|
|
template void registerTypesMapObjects1<CSaveFile>(CSaveFile & s);
|
|
template void registerTypesMapObjects1<CLoadFile>(CLoadFile & s);
|
|
template void registerTypesMapObjects1<CTypeList>(CTypeList & s);
|
|
template void registerTypesMapObjects1<CLoadIntegrityValidator>(CLoadIntegrityValidator & s);
|
|
|