2021-12-05 17:54:36 +00:00
|
|
|
|
#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;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
bool IsBestFriend = false;
|
|
|
|
|
bool IsFriend = false;
|
|
|
|
|
bool IsModeratorApproved = false;
|
|
|
|
|
bool IsAlt = false;
|
2022-03-28 06:46:43 +00:00
|
|
|
|
bool IsOwned = false;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
uint32_t AccessType = 0;
|
|
|
|
|
uint32_t DatePublished = 0;
|
|
|
|
|
uint64_t PerformanceCost = 0;
|
|
|
|
|
};
|