2022-09-17 20:46:11 +01:00

14 lines
258 B
C#

using BepInEx;
namespace CWX_MasterKey
{
[BepInPlugin("com.CWX.MasterKey", "CWX-MasterKey", "1.3.5")]
public class Plugin : BaseUnityPlugin
{
private void Awake()
{
new MasterKeyPatch().Enable();
}
}
}