forked from CWX/CWX-mods
14 lines
271 B
C#
14 lines
271 B
C#
using BepInEx;
|
|
|
|
namespace CWX_DeSharpener
|
|
{
|
|
[BepInPlugin("com.CWX.DeSharpener", "CWX-DeSharpener", "1.5.2")]
|
|
public class DeSharpener : BaseUnityPlugin
|
|
{
|
|
private void Awake()
|
|
{
|
|
new DeSharpenerPatch().Enable();
|
|
}
|
|
}
|
|
}
|