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

add banner object loading

This commit is contained in:
Ted John
2016-06-25 23:43:30 +01:00
parent 54f50c1f20
commit a07bbc6bce
4 changed files with 122 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
#include "../core/FileStream.hpp"
#include "../core/Memory.hpp"
#include "../core/MemoryStream.h"
#include "BannerObject.h"
#include "EntranceObject.h"
#include "FootpathItemObject.h"
#include "FootpathObject.h"
@@ -80,6 +81,9 @@ namespace ObjectFactory
case OBJECT_TYPE_WALLS:
result = new WallObject(entry);
break;
case OBJECT_TYPE_BANNERS:
result = new BannerObject(entry);
break;
case OBJECT_TYPE_PATHS:
result = new FootpathObject(entry);
break;