UnitComponent.cs 111 B

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