PlayerComponent.cs 202 B

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