PlayerComponent.cs 159 B

12345678
  1. namespace ET.Client
  2. {
  3. [ComponentOf(typeof(Scene))]
  4. public class PlayerComponent: Entity, IAwake
  5. {
  6. public long MyId { get; set; }
  7. }
  8. }