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

add path item object

This commit is contained in:
Ted John
2016-06-25 18:05:24 +01:00
parent 90923fbb43
commit 7e206d1a85
6 changed files with 124 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
#include "../core/Memory.hpp"
#include "../core/MemoryStream.h"
#include "EntranceObject.h"
#include "FootpathItemObject.h"
#include "FootpathObject.h"
#include "Object.h"
#include "ObjectFactory.h"
@@ -66,6 +67,9 @@ namespace ObjectFactory
case OBJECT_TYPE_PATHS:
result = new FootpathObject(entry);
break;
case OBJECT_TYPE_PATH_BITS:
result = new FootpathItemObject(entry);
break;
case OBJECT_TYPE_PARK_ENTRANCE:
result = new EntranceObject(entry);
break;