You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
339 B
13 lines
339 B
3 years ago
|
namespace ET
|
||
|
{
|
||
|
[ComponentOf(typeof(Scene))]
|
||
|
[ChildType(typeof(ActorLocationSender))]
|
||
|
public class ActorLocationSenderComponent: Entity, IAwake, IDestroy
|
||
|
{
|
||
|
public static long TIMEOUT_TIME = 60 * 1000;
|
||
|
|
||
|
public static ActorLocationSenderComponent Instance { get; set; }
|
||
|
|
||
|
public long CheckTimer;
|
||
|
}
|
||
|
}
|