LSConstValue.cs 297 B

12345678910
  1. namespace ET
  2. {
  3. public static class LSConstValue
  4. {
  5. public const int MatchCount = 2;
  6. public const int UpdateInterval = 50;
  7. public const int FrameCountPerSecond = 1000 / UpdateInterval;
  8. public const int SaveLSWorldFrameCount = 60 * FrameCountPerSecond;
  9. }
  10. }