diff --git a/Runtime/GameAppStaticMemberReset.cs b/Runtime/GameAppStaticMemberReset.cs index 8872db6..67fa508 100644 --- a/Runtime/GameAppStaticMemberReset.cs +++ b/Runtime/GameAppStaticMemberReset.cs @@ -17,40 +17,18 @@ internal static class GameAppStaticMemberReset private static void ResetAllEventContainers() { GameApp._base = null; -#if ALICIZAX_AUDIO_SUPPORT GameApp._audio = null; -#endif - -#if ALICIZAX_EVENT_SUPPORT - GameApp._event = null; -#endif -#if ALICIZAX_FSM_SUPPORT GameApp._fsm = null; -#endif -#if ALICIZAX_LOCALIZATION_SUPPORT GameApp._localization = null; -#endif #if ALICIZAX_NETWORK GameApp._network = null; #endif GameApp._objectPool = null; -#if ALICIZAX_RESOURCE_SUPPORT GameApp._resource = null; -#endif - -#if ALICIZAX_SCENE_SUPPORT GameApp._scene = null; -#endif - -#if ALICIZAX_TIMER_SUPPORT GameApp._timer = null; -#endif - -#if ALICIZAX_UI_SUPPORT GameApp._ui = null; -#endif - } }