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

add water object loading

This commit is contained in:
Ted John
2016-06-26 00:31:16 +01:00
parent 6912c537bb
commit 25af7d346c
4 changed files with 112 additions and 0 deletions

View File

@@ -29,6 +29,7 @@
#include "SmallSceneryObject.h"
#include "StexObject.h"
#include "WallObject.h"
#include "WaterObject.h"
extern "C"
{
@@ -97,6 +98,9 @@ namespace ObjectFactory
case OBJECT_TYPE_PARK_ENTRANCE:
result = new EntranceObject(entry);
break;
case OBJECT_TYPE_WATER:
result = new WaterObject(entry);
break;
case OBJECT_TYPE_SCENARIO_TEXT:
result = new StexObject(entry);
break;