XIVChat/XIVChatCommon/Message/Server/ServerOperation.cs

15 lines
325 B
C#
Raw Normal View History

namespace XIVChatCommon.Message.Server {
public enum ServerOperation : byte {
Pong = 1,
Message = 2,
Shutdown = 3,
PlayerData = 4,
Availability = 5,
Channel = 6,
Backlog = 7,
PlayerList = 8,
LinkshellList = 9,
TargetingList = 10,
}
}