added comments

This commit is contained in:
EmosewaMC 2022-03-28 20:51:19 -07:00
parent 19e82a5150
commit 69ec1216dc

View File

@ -9,17 +9,17 @@ public:
void Deserialize(RakNet::BitStream& stream) const; void Deserialize(RakNet::BitStream& stream) const;
LWOCLONEID CloneId = LWOCLONEID_INVALID; LWOCLONEID CloneId = LWOCLONEID_INVALID; // The cloneID of the property
std::string OwnerName = ""; std::string OwnerName = ""; // The property owners name
std::string Name = ""; std::string Name = ""; // The property name
std::string Description = ""; std::string Description = ""; // The property description
uint32_t Reputation = 0; uint32_t Reputation = 0; // The reputation of the property
bool IsBestFriend = false; bool IsBestFriend = false; // Whether or not the property belongs to a best friend
bool IsFriend = false; bool IsFriend = false; // Whether or not the property belongs to a friend
bool IsModeratorApproved = false; bool IsModeratorApproved = false; // Whether or not a moderator has approved this property
bool IsAlt = false; bool IsAlt = false; // Whether or not the property is owned by an alt of the account owner
bool IsOwned = false; bool IsOwned = false; // Whether or not the property is owned
uint32_t AccessType = 0; uint32_t AccessType = 0; // The privacy option of the property
uint32_t DateLastPublished = 0; uint32_t DateLastPublished = 0; // The last day the property was published
uint64_t PerformanceCost = 0; uint64_t PerformanceCost = 0; // The performance cost of the property
}; };