ActorLocationSenderComponent.cs 343 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. [ChildType(typeof(ActorLocationSender))]
  5. public class ActorLocationSenderComponent: Entity, IAwake, IDestroy
  6. {
  7. public const long TIMEOUT_TIME = 60 * 1000;
  8. public static ActorLocationSenderComponent Instance { get; set; }
  9. public long CheckTimer;
  10. }
  11. }