feat: 添加了受击反馈mod chore: 优化了隐藏角色的代码

This commit is contained in:
m0_75251201
2025-11-02 11:43:21 +08:00
parent 2af09007f9
commit 2b7943339c
48 changed files with 253 additions and 36 deletions

9
HitFeedback/Config.cs Normal file
View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace HitFeedback
{
public class Config
{
public Dictionary<string, float> probability = new Dictionary<string, float>();
}
}