1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

add scenery group object loading

This commit is contained in:
Ted John
2016-06-26 00:06:55 +01:00
parent a07bbc6bce
commit 6912c537bb
4 changed files with 160 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
#include "Object.h"
#include "ObjectFactory.h"
#include "RideObject.h"
#include "SceneryGroupObject.h"
#include "SmallSceneryObject.h"
#include "StexObject.h"
#include "WallObject.h"
@@ -90,6 +91,9 @@ namespace ObjectFactory
case OBJECT_TYPE_PATH_BITS:
result = new FootpathItemObject(entry);
break;
case OBJECT_TYPE_SCENERY_SETS:
result = new SceneryGroupObject(entry);
break;
case OBJECT_TYPE_PARK_ENTRANCE:
result = new EntranceObject(entry);
break;