2022-05-14 19:53:00 +01:00
|
|
|
|
using BepInEx;
|
|
|
|
|
|
|
|
|
|
namespace CWX_MasterKey
|
|
|
|
|
{
|
2022-11-18 20:15:07 +00:00
|
|
|
|
[BepInPlugin("com.CWX.MasterKey", "CWX-MasterKey", "1.3.9")]
|
2022-10-19 17:27:45 +01:00
|
|
|
|
public class MasterKey : BaseUnityPlugin
|
2022-05-14 19:53:00 +01:00
|
|
|
|
{
|
2022-10-19 17:27:45 +01:00
|
|
|
|
private void Awake()
|
2022-09-19 00:12:56 +01:00
|
|
|
|
{
|
2022-10-19 17:27:45 +01:00
|
|
|
|
new MasterKeyPatch().Enable();
|
2022-09-19 00:12:56 +01:00
|
|
|
|
}
|
2022-05-14 19:53:00 +01:00
|
|
|
|
}
|
2022-10-19 17:27:45 +01:00
|
|
|
|
}
|