ConstGame.cs 279 B

123456789101112131415
  1. using System;
  2. using System.Reflection;
  3. namespace ET.Server
  4. {
  5. public static class ConstGame
  6. {
  7. [StaticField]
  8. public static int GameServerId;
  9. [StaticField]
  10. public static string GameServerUUID = System.Guid.NewGuid().ToString();
  11. }
  12. }