continuity/Server/Packets/OperationCode.cs
Timothy Schenk 756031b186
All checks were successful
Test if Server can be built / build-server (push) Successful in 23s
feat: initial ChannelSelection
2023-08-14 22:22:43 +02:00

8 lines
134 B
C#

namespace Server.Packets;
public enum OperationCode : ushort
{
LoginInfo = 11,
LoginResponse = 12,
ChannelSelection
}