1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- namespace ET.Server
- {
-
-
-
- public static class ConstGame
- {
- [StaticField]
- public static int GameServerId;
- [StaticField]
- public static string GameServerUUID = System.Guid.NewGuid().ToString();
- }
-
-
-
- public enum RoomType
- {
-
- HGHH = 1,
-
- EzhouMahjong = 2,
- }
-
-
-
- public enum OperationType
- {
- CHI = 1,
- PENG = 2,
- GANG = 3,
- HU = 4,
- GUO = 5,
- }
- }
|