namespace ET.Server { [FriendOf(typeof (PlayerMoneyComponent))] public static class PlayerMoneyComponentSystem { public class PlayerMoneyComponentAwakeSystem: AwakeSystem { protected override void Awake(PlayerMoneyComponent self) { Log.Info($"创建玩家货币组件..."); } } public class PlayerMoneyComponentDestroySystem: DestroySystem { protected override void Destroy(PlayerMoneyComponent self) { } } } }