14 lines
251 B
C#
Raw Normal View History

2022-05-14 19:53:00 +01:00
using BepInEx;
namespace VoiceAdd
{
[BepInPlugin("com.CWX.VoiceAdder", "CWX-VoiceAdder", "2.0.0")]
public class Plugin : BaseUnityPlugin
{
private void Start()
{
new VoicePatch().Enable();
}
}
}