UnitComponent.cs 178 B

123456789
  1. namespace ET
  2. {
  3. [ComponentOf(typeof(Scene))]
  4. public class UnitComponent: Entity, IAwake, IDestroy
  5. {
  6. [StaticField]
  7. public static UnitComponent Instance;
  8. }
  9. }