mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 06:44:38 +01:00
41 lines
1.2 KiB
C++
41 lines
1.2 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 "../core/Money.hpp"
|
|
#include "../localisation/StringIdType.h"
|
|
#include "EntityBase.h"
|
|
|
|
#include <utility>
|
|
|
|
class DataSerialiser;
|
|
struct CoordsXYZ;
|
|
struct PaintSession;
|
|
|
|
struct MoneyEffect : EntityBase
|
|
{
|
|
static constexpr auto cEntityType = EntityType::MoneyEffect;
|
|
|
|
uint16_t frame;
|
|
uint16_t MoveDelay;
|
|
uint8_t NumMovements;
|
|
uint8_t GuestPurchase;
|
|
money64 Value;
|
|
int16_t OffsetX;
|
|
uint16_t Wiggle;
|
|
|
|
static void CreateAt(money64 value, const CoordsXYZ& effectPos, bool guestPurchase);
|
|
static void Create(money64 value, const CoordsXYZ& loc);
|
|
void Update();
|
|
std::pair<StringId, money64> GetStringId() const;
|
|
void Serialise(DataSerialiser& stream);
|
|
void Paint(PaintSession& session, int32_t imageDirection) const;
|
|
};
|