UnitGateComponent.cs 192 B

12345678
  1. namespace ET.Server
  2. {
  3. [ComponentOf(typeof(Unit))]
  4. public class UnitGateComponent : Entity, IAwake<long>, ITransfer
  5. {
  6. public long GateSessionActorId { get; set; }
  7. }
  8. }