mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 06:44:38 +01:00
add reading of entrance objects
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
#include "../core/IStream.hpp"
|
||||
#include "EntranceObject.h"
|
||||
|
||||
void EntranceObject::Load(IStream * stream)
|
||||
void EntranceObject::ReadLegacy(IStream * stream)
|
||||
{
|
||||
_legacyType.string_idx = stream->ReadValue<rct_string_id>();
|
||||
_legacyType.image_id = stream->ReadValue<uint32>();
|
||||
@@ -27,3 +27,13 @@ void EntranceObject::Load(IStream * stream)
|
||||
LoadStringTable(stream, 0);
|
||||
LoadImageTable(stream);
|
||||
}
|
||||
|
||||
void EntranceObject::Load()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void EntranceObject::Unload()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user