mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 11:33:03 +01:00
* Rename Object::objectType to Object::kObjectType * Rename TileElement::ElementType to TileElement::kElementType
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2024 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 "PathAdditionEntry.h"
|
|
#include "SceneryObject.h"
|
|
|
|
class PathAdditionObject final : public SceneryObject
|
|
{
|
|
private:
|
|
PathAdditionEntry _legacyType = {};
|
|
|
|
public:
|
|
static constexpr ObjectType kObjectType = ObjectType::PathAdditions;
|
|
|
|
void* GetLegacyData() override
|
|
{
|
|
return &_legacyType;
|
|
}
|
|
|
|
void ReadLegacy(IReadObjectContext* context, OpenRCT2::IStream* stream) override;
|
|
void ReadJson(IReadObjectContext* context, json_t& root) override;
|
|
void Load() override;
|
|
void Unload() override;
|
|
|
|
void DrawPreview(DrawPixelInfo& dpi, int32_t width, int32_t height) const override;
|
|
};
|