continuity/Wonderking/Packets/OperationCode.cs
Timothy Schenk 3a24dabdf2
chore: formatting and slnx
Signed-off-by: Timothy Schenk <admin@rainote.dev>
2025-01-16 14:30:40 +01:00

18 lines
508 B
C#

// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
namespace Wonderking.Packets;
public enum OperationCode : ushort {
LoginInfo = 11,
LoginResponse = 12,
ChannelSelection = 13,
ChannelSelectionResponse = 13,
CharacterNameCheck = 14,
CharacterNameCheckResponse = 14,
CharacterCreation = 15,
CharacterCreationResponse = 15,
CharacterDeletion = 16,
CharacterDeletionResponse = 16,
CharacterSelection = 17,
CharacterSelectionSetGuildName = 19
}