mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-27 16:54:52 +01:00
35 lines
1000 B
C++
35 lines
1000 B
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2019 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "Object.h"
|
|
|
|
class TerrainEdgeObject final : public Object
|
|
{
|
|
private:
|
|
public:
|
|
rct_string_id NameStringId{};
|
|
uint32_t IconImageId{};
|
|
uint32_t BaseImageId{};
|
|
uint32_t NumImagesLoaded{};
|
|
bool HasDoors{};
|
|
|
|
explicit TerrainEdgeObject(const rct_object_entry& entry)
|
|
: Object(entry)
|
|
{
|
|
}
|
|
|
|
void ReadJson(IReadObjectContext* context, const json_t* root) override;
|
|
void Load() override;
|
|
void Unload() override;
|
|
|
|
void DrawPreview(rct_drawpixelinfo* dpi, int32_t width, int32_t height) const override;
|
|
};
|