zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Demo/UnitGateComponent.cs

22 lines
453 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
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;
}
}
}