XIVChat/XIVChatCommon/Message/Server/ServerOperation.cs

15 lines
327 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,
2022-08-22 17:46:17 +00:00
HousingLocation = 10,
}
}