SessionPlayerComponent.cs 165 B

12345678
  1. namespace ET.Server
  2. {
  3. [ComponentOf(typeof(Session))]
  4. public class SessionPlayerComponent : Entity, IAwake, IDestroy
  5. {
  6. public long PlayerId { get; set; }
  7. }
  8. }