feat: 受击音效更新类别控制

This commit is contained in:
m0_75251201
2025-11-05 21:34:21 +08:00
parent 5d69efbc3f
commit 786025f720
50 changed files with 2078 additions and 501 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
namespace UIFrame.Patch
{
[HarmonyLib.HarmonyPatch(typeof(SceneLoader), "LoadMainMenu")]
public class PatchSceneLoaderLoadMainMenu
{
public static void Postfix()
{
Debug.Log("LoadMainMenu called");
}
}
}