| 1234567891011121314151617181920 |
- namespace ET
- {
- public class UnitGateComponentAwakeSystem : AwakeSystem<UnitGateComponent, long>
- {
- public override void Awake(UnitGateComponent self, long a)
- {
- self.Awake(a);
- }
- }
- public class UnitGateComponent : Entity, ISerializeToEntity
- {
- public long GateSessionActorId;
- public void Awake(long gateSessionId)
- {
- this.GateSessionActorId = gateSessionId;
- }
- }
- }
|