123456789101112131415 |
- namespace ET.Server
- {
- [FriendOf(typeof(Player))]
- public static class PlayerSystem
- {
- [ObjectSystem]
- public class PlayerAwakeSystem : AwakeSystem<Player, long>
- {
- protected override void Awake(Player self, long userId)
- {
- self.UserId = userId;
- }
- }
- }
- }
|