namespace ET.Client { public static class GameObjectComponentSystem { [ObjectSystem] public class DestroySystem : DestroySystem { protected override void Destroy(GameObjectComponent self) { UnityEngine.Object.Destroy(self.GameObject); } } } }