PlayerSystem.cs 351 B

123456789101112131415
  1. namespace ET.Server
  2. {
  3. [FriendOf(typeof(Player))]
  4. public static class PlayerSystem
  5. {
  6. [ObjectSystem]
  7. public class PlayerAwakeSystem : AwakeSystem<Player, long>
  8. {
  9. protected override void Awake(Player self, long userId)
  10. {
  11. self.UserId = userId;
  12. }
  13. }
  14. }
  15. }