PlayerComponent.cs 274 B

123456789101112
  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. /** 登陆token **/
  9. //public string Token { get; set; }
  10. }
  11. }