2022-05-14 19:53:00 +01:00
|
|
|
|
using BepInEx;
|
|
|
|
|
using BepInEx.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace DeSharpener
|
|
|
|
|
{
|
2022-09-17 20:46:11 +01:00
|
|
|
|
[BepInPlugin("com.CWX.DeSharpener", "CWX-DeSharpener", "1.4.4")]
|
2022-05-14 19:53:00 +01:00
|
|
|
|
public class Plugin : BaseUnityPlugin
|
|
|
|
|
{
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
2022-05-25 13:36:03 +01:00
|
|
|
|
new SharpenPatch().Enable();
|
2022-05-14 19:53:00 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|