CWX-mods/Live/CWX_MasterKey/MasterKey.cs

14 lines
261 B
C#
Raw Normal View History

2022-05-14 19:53:00 +01:00
using BepInEx;
namespace CWX_MasterKey
{
2022-11-18 19:45:42 +00:00
[BepInPlugin("com.CWX.MasterKey", "CWX-MasterKey", "1.3.8")]
public class MasterKey : BaseUnityPlugin
2022-05-14 19:53:00 +01:00
{
private void Awake()
{
new MasterKeyPatch().Enable();
}
2022-05-14 19:53:00 +01:00
}
}