ConstGame.cs 371 B

123456789101112131415161718
  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. [StaticField]
  12. public static int[] TowerTemplateIDs = { 1001, 1002, 1003 };
  13. }
  14. }