2022-05-14 19:53:00 +01:00
|
|
|
|
using BepInEx;
|
|
|
|
|
|
2022-10-19 17:27:45 +01:00
|
|
|
|
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()
|
|
|
|
|
{
|
2022-10-19 17:27:45 +01:00
|
|
|
|
new BushWhackerPatch().Enable();
|
2022-05-14 19:53:00 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|