CWX-mods/Live/CWX_BushWhacker/BushWhacker.cs

14 lines
270 B
C#
Raw Normal View History

2022-05-14 19:53:00 +01:00
using BepInEx;
namespace CWX_BushWhacker
2022-05-14 19:53:00 +01:00
{
2023-08-08 19:34:27 +01:00
[BepInPlugin("com.cwx.bushwhacker", "cwx-bushwhacker", "1.4.0")]
2022-05-14 19:53:00 +01:00
public class BushWhacker : BaseUnityPlugin
{
public void Start()
{
new BushWhackerPatch().Enable();
2022-05-14 19:53:00 +01:00
}
}
}