Player.cs 221 B

12345678910
  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. public long UnitId { get; set; }
  8. }
  9. }