Opcode.cs 120 B

123456789
  1. namespace Model
  2. {
  3. public enum Opcode: ushort
  4. {
  5. CMsgLogin = 1,
  6. RpcResponse = 30000,
  7. RpcException = 30001,
  8. }
  9. }