CTT/Server/Model/Module/ActorLocation/ActorLocationSenderComponen...

13 lines
284 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System.Collections.Generic;
namespace ET
{
public class ActorLocationSenderComponent: Entity
{
public static long TIMEOUT_TIME = 60 * 1000;
public static ActorLocationSenderComponent Instance { get; set; }
public long CheckTimer;
}
}