namespace ET.Server { public class PlayerDataComponentaAwakeSystem: AwakeSystem { /// /// 玩家基础数据组件创建 /// /// /// /// protected override void Awake(PlayerDataComponent self, PlayerInfo info, WNPlayer player) { self.Player = player; self.Data = info; } } public class PlayerDataComponentDestroySystem: DestroySystem { /// /// 玩家基础数据组件销毁 /// /// protected override void Destroy(PlayerDataComponent self) { Log.Debug($"玩家基础数据保存"); self?.Save(); } } [FriendOf(typeof (PlayerDataComponent))] public static class PlayerDataComponentSystem { public static async ETTask Save(this PlayerDataComponent self) { if (self.Data != null) { await DBManagerComponent.Instance.GetZoneDB(self.DomainZone()).Save(self.Data); } } } }