SessionPlayerComponent.cs 184 B

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