14 lines
258 B
C#
Raw Normal View History

2022-05-14 19:53:00 +01:00
using BepInEx;
namespace CWX_MasterKey
{
2022-08-19 17:27:56 +01:00
[BepInPlugin("com.CWX.MasterKey", "CWX-MasterKey", "1.3.0")]
2022-05-14 19:53:00 +01:00
public class Plugin : BaseUnityPlugin
{
private void Awake()
{
2022-08-19 17:27:56 +01:00
new MasterKeyPatch().Enable();
2022-05-14 19:53:00 +01:00
}
}
}