| 1234567891011121314151617181920212223 |
- namespace ETModel
- {
- [ObjectSystem]
- 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 bool IsDisconnect;
- public void Awake(long gateSessionId)
- {
- this.GateSessionActorId = gateSessionId;
- }
- }
- }
|