UnitComponent.cs 143 B

12345678
  1. namespace ET
  2. {
  3. [ComponentOf(typeof(Scene))]
  4. public class UnitComponent: Entity, IAwake
  5. {
  6. public long MyUnitId { get; set; }
  7. }
  8. }