2023-08-08 19:34:27 +01:00

14 lines
270 B
C#

using BepInEx;
namespace CWX_BushWhacker
{
[BepInPlugin("com.cwx.bushwhacker", "cwx-bushwhacker", "1.4.0")]
public class BushWhacker : BaseUnityPlugin
{
public void Start()
{
new BushWhackerPatch().Enable();
}
}
}