UnitComponent.cs 136 B

12345678
  1. namespace ET
  2. {
  3. [ChildType(typeof(Unit))]
  4. [ComponentOf(typeof(Scene))]
  5. public class UnitComponent: Entity, IAwake, IDestroy
  6. {
  7. }
  8. }