mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
tab spacing
This commit is contained in:
parent
af15cc60eb
commit
9f16284595
@ -23,15 +23,16 @@ void PropertySelectQueryProperty::Serialize(RakNet::BitStream& stream) const
|
|||||||
stream.Write(static_cast<uint16_t>(description[i]));
|
stream.Write(static_cast<uint16_t>(description[i]));
|
||||||
}
|
}
|
||||||
|
|
||||||
stream.Write(Reputation);
|
stream.Write(Reputation);
|
||||||
stream.Write(IsBestFriend);
|
stream.Write(IsBestFriend);
|
||||||
stream.Write(IsFriend);
|
stream.Write(IsFriend);
|
||||||
stream.Write(IsModeratorApproved);
|
stream.Write(IsModeratorApproved);
|
||||||
stream.Write(IsAlt);
|
stream.Write(IsAlt);
|
||||||
stream.Write(IsOwned);
|
stream.Write(IsOwned);
|
||||||
stream.Write(AccessType);
|
stream.Write(AccessType);
|
||||||
stream.Write(DateLastPublished);
|
stream.Write(DateLastPublished);
|
||||||
stream.Write(PerformanceCost);
|
stream.Write(PerformanceIndex);
|
||||||
|
stream.Write(PerformanceCost);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PropertySelectQueryProperty::Deserialize(RakNet::BitStream& stream) const
|
void PropertySelectQueryProperty::Deserialize(RakNet::BitStream& stream) const
|
||||||
|
@ -21,5 +21,6 @@ public:
|
|||||||
bool IsOwned = false; // Whether or not the property is owned
|
bool IsOwned = false; // Whether or not the property is owned
|
||||||
uint32_t AccessType = 0; // The privacy option of the property
|
uint32_t AccessType = 0; // The privacy option of the property
|
||||||
uint32_t DateLastPublished = 0; // The last day the property was published
|
uint32_t DateLastPublished = 0; // The last day the property was published
|
||||||
uint64_t PerformanceCost = 0; // The performance cost of the property
|
float PerformanceCost = 0; // The performance cost of the property
|
||||||
|
uint32_t PerformanceIndex = 0; // The performance index of the property? Always 0?
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user