22 lines
453 B
C#
22 lines
453 B
C#
|
namespace ET
|
|||
|
{
|
|||
|
|
|||
|
public class UnitGateComponentAwakeSystem : AwakeSystem<UserGateComponent, long>
|
|||
|
{
|
|||
|
public override void Awake(UserGateComponent self, long a)
|
|||
|
{
|
|||
|
self.Awake(a);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public class UserGateComponent : Entity
|
|||
|
{
|
|||
|
public long GateSessionActorId;
|
|||
|
|
|||
|
|
|||
|
public void Awake(long gateSessionId)
|
|||
|
{
|
|||
|
this.GateSessionActorId = gateSessionId;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|