using Fantasy; using Fantasy.Entitas; using Fantasy.Entitas.Interface; namespace Hotfix; public class GateComponentAwakeSystem : AwakeSystem { protected override void Awake(GateComponent self) { self.AddComponent(); } } public static class GateComponentSystem { }