CWX-mods/Live/CWX_DeSharpener/DeSharpener.cs

14 lines
271 B
C#
Raw Normal View History

2022-05-14 19:53:00 +01:00
using BepInEx;
namespace CWX_DeSharpener
2022-05-14 19:53:00 +01:00
{
2023-03-12 11:09:53 +00:00
[BepInPlugin("com.CWX.DeSharpener", "CWX-DeSharpener", "1.5.1")]
public class DeSharpener : BaseUnityPlugin
2022-05-14 19:53:00 +01:00
{
private void Awake()
{
new DeSharpenerPatch().Enable();
2022-05-14 19:53:00 +01:00
}
}
}