1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

add large scenery object loading

This commit is contained in:
Ted John
2016-06-25 22:47:09 +01:00
parent 2c02412f98
commit 958dfa6623
4 changed files with 175 additions and 0 deletions

View File

@@ -20,6 +20,7 @@
#include "EntranceObject.h"
#include "FootpathItemObject.h"
#include "FootpathObject.h"
#include "LargeSceneryObject.h"
#include "Object.h"
#include "ObjectFactory.h"
#include "RideObject.h"
@@ -72,6 +73,9 @@ namespace ObjectFactory
case OBJECT_TYPE_SMALL_SCENERY:
result = new SmallSceneryObject(entry);
break;
case OBJECT_TYPE_LARGE_SCENERY:
result = new LargeSceneryObject(entry);
break;
case OBJECT_TYPE_PATHS:
result = new FootpathObject(entry);
break;