2023-08-04 02:44:03 +00:00
|
|
|
#ifndef __DONATIONVENDORCOMPONENT__H__
|
|
|
|
#define __DONATIONVENDORCOMPONENT__H__
|
|
|
|
|
|
|
|
#include "VendorComponent.h"
|
|
|
|
#include "eReplicaComponentType.h"
|
|
|
|
|
|
|
|
class Entity;
|
|
|
|
|
|
|
|
class DonationVendorComponent final : public VendorComponent {
|
|
|
|
public:
|
2024-01-24 05:13:23 +00:00
|
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::DONATION_VENDOR;
|
2023-08-04 02:44:03 +00:00
|
|
|
DonationVendorComponent(Entity* parent);
|
2024-02-27 07:25:44 +00:00
|
|
|
void Serialize(RakNet::BitStream& outBitStream, bool bIsInitialUpdate) override;
|
2023-08-04 02:44:03 +00:00
|
|
|
uint32_t GetActivityID() {return m_ActivityId;};
|
|
|
|
void SubmitDonation(uint32_t count);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_DirtyDonationVendor = false;
|
|
|
|
float m_PercentComplete = 0.0;
|
|
|
|
int32_t m_TotalDonated = 0;
|
|
|
|
int32_t m_TotalRemaining = 0;
|
|
|
|
uint32_t m_ActivityId = 0;
|
|
|
|
int32_t m_Goal = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //!__DONATIONVENDORCOMPONENT__H__
|