TigerEmu/Communication/Messages/Outgoing/OutgoingHeaders.cs

27 lines
561 B
C#
Raw Permalink Normal View History

2023-09-23 11:11:07 +00:00
namespace Tiger.Communication.Messages.Outgoing;
public enum OutgoingHeaders : short
2023-09-23 11:11:07 +00:00
{
2023-11-10 13:55:42 +00:00
Hello = 0,
SecretKey = 1,
Rights = 2,
LoginOk = 3,
UserObj = 5,
Purse = 6,
Err = 33,
UserBanned = 35,
Ping = 50,
RegistrationOk = 51,
EspNotify = 52,
FlatResults = 55,
NoFlatsForUser = 57,
NoFlats = 58,
FlatCreated = 59,
SystemBroadcast = 139,
CheckSum = 141,
ModAlert = 161,
NavNodeInfo = 220,
UserFlatCats = 221,
AvailableBadges = 229,
SessionParameters = 257
2023-09-23 11:11:07 +00:00
}