mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-26 16:24:35 +01:00
34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2025 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 "../ride/TrackDesign.h"
|
|
#include "GameAction.h"
|
|
|
|
class TrackDesignAction final : public GameActionBase<GameCommand::PlaceTrackDesign>
|
|
{
|
|
private:
|
|
CoordsXYZD _loc;
|
|
TrackDesign _td;
|
|
|
|
public:
|
|
TrackDesignAction() = default;
|
|
TrackDesignAction(const CoordsXYZD& location, const TrackDesign& td);
|
|
|
|
void AcceptParameters(GameActionParameterVisitor& visitor) override;
|
|
|
|
uint16_t GetActionFlags() const override;
|
|
|
|
void Serialise(DataSerialiser& stream) override;
|
|
|
|
OpenRCT2::GameActions::Result Query() const override;
|
|
OpenRCT2::GameActions::Result Execute() const override;
|
|
};
|