mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 09:32:29 +01:00
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2020 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 "../peep/Staff.h"
|
|
#include "GameAction.h"
|
|
|
|
class StaffSetCostumeAction final : public GameActionBase<GameCommand::SetStaffCostume>
|
|
{
|
|
private:
|
|
uint16_t _spriteIndex{ SPRITE_INDEX_NULL };
|
|
EntertainerCostume _costume = EntertainerCostume::Count;
|
|
|
|
public:
|
|
StaffSetCostumeAction() = default;
|
|
StaffSetCostumeAction(uint16_t spriteIndex, EntertainerCostume costume);
|
|
|
|
uint16_t GetActionFlags() const override;
|
|
|
|
void Serialise(DataSerialiser& stream) override;
|
|
GameActions::Result::Ptr Query() const override;
|
|
GameActions::Result::Ptr Execute() const override;
|
|
};
|