GlobalRobotComponent.cs 194 B

12345678910
  1. namespace ET;
  2. public class GlobalRobotComponent : Entity, IAwake, IDestroy
  3. {
  4. public static GlobalRobotComponent Instance;
  5. public long Timer = 0L;
  6. public int MaxCount = 5000;
  7. }