22 lines
453 B
C#
Executable File
22 lines
453 B
C#
Executable File
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;
|
|
}
|
|
}
|
|
} |