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

@@ -1,16 +1,18 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using UnityEngine;
namespace Theme
{
public class ModBehaviour:Duckov.Modding.ModBehaviour
public class ModBehaviour : Duckov.Modding.ModBehaviour
{
private StringBuilder _outputStringBuilder;
protected override void OnAfterSetup()
{
base.OnAfterSetup();
}
protected override void OnBeforeDeactivate()
{
base.OnBeforeDeactivate();
}
}
}