using System; namespace ET { public static class PlayerComponentSystem { public class AwakeSystem : AwakeSystem { public override void Awake(PlayerComponent self) { } } [ObjectSystem] public class PlayerComponentDestroySystem: DestroySystem { public override void Destroy(PlayerComponent self) { } } } }