1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-05 00:49:09 +02:00

Renamed LibClasses * VLC to GameLibrary * LIBRARY

This commit is contained in:
Ivan Savenko
2025-02-14 16:23:37 +00:00
parent 156de5b17e
commit 645b95ba02
287 changed files with 2032 additions and 2032 deletions

View File

@ -11,7 +11,7 @@
#include "StdInc.h"
#include "ObjectInfo.h"
#include "../VCMI_Lib.h"
#include "../GameLibrary.h"
#include "../mapObjectConstructors/CObjectClassesHandler.h"
#include "../mapObjectConstructors/AObjectTypeHandler.h"
#include "../serializer/JsonSerializeFormat.h"
@ -61,7 +61,7 @@ ObjectInfo & ObjectInfo::operator=(const ObjectInfo & other)
void ObjectInfo::setAllTemplates(MapObjectID type, MapObjectSubID subtype)
{
auto templHandler = VLC->objtypeh->getHandlerFor(type, subtype);
auto templHandler = LIBRARY->objtypeh->getHandlerFor(type, subtype);
if(!templHandler)
return;
@ -70,7 +70,7 @@ void ObjectInfo::setAllTemplates(MapObjectID type, MapObjectSubID subtype)
void ObjectInfo::setTemplates(MapObjectID type, MapObjectSubID subtype, TerrainId terrainType)
{
auto templHandler = VLC->objtypeh->getHandlerFor(type, subtype);
auto templHandler = LIBRARY->objtypeh->getHandlerFor(type, subtype);
if(!templHandler)
return;