DarkflameServer/dGame/dGameMessages/PropertySelectQueryProperty.h

26 lines
607 B
C
Raw Normal View History

#pragma once
#include "Entity.h"
class PropertySelectQueryProperty final
{
public:
void Serialize(RakNet::BitStream& stream) const;
void Deserialize(RakNet::BitStream& stream) const;
LWOCLONEID CloneId = LWOCLONEID_INVALID;
std::string OwnerName = "";
std::string Name = "";
std::string Description = "";
2022-03-28 10:26:01 +00:00
uint32_t Reputation = 0;
bool IsBestFriend = false;
bool IsFriend = false;
bool IsModeratorApproved = false;
bool IsAlt = false;
2022-03-28 06:46:43 +00:00
bool IsOwned = false;
uint32_t AccessType = 0;
2022-03-29 02:58:15 +00:00
uint32_t DateLastPublished = 0;
uint64_t PerformanceCost = 0;
};