2022-05-14 19:53:00 +01:00
|
|
|
|
using BepInEx;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace CWX_MasterKey
|
|
|
|
|
{
|
|
|
|
|
[BepInPlugin("com.CWX.MasterKey", "CWX-MasterKey", "1.0.0")]
|
|
|
|
|
public class Plugin : BaseUnityPlugin
|
|
|
|
|
{
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
2022-05-25 13:36:03 +01:00
|
|
|
|
new GameWorldPatch().Enable();
|
2022-05-14 19:53:00 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|