Player.cs 177 B

12345678
  1. namespace ET.Server
  2. {
  3. [ChildOf(typeof(PlayerComponent))]
  4. public sealed class Player : Entity, IAwake<string>
  5. {
  6. public string Account { get; set; }
  7. }
  8. }