forked from CWX/CWX-mods
14 lines
261 B
C#
14 lines
261 B
C#
using BepInEx;
|
|
|
|
namespace CWX_MasterKey
|
|
{
|
|
[BepInPlugin("com.CWX.MasterKey", "CWX-MasterKey", "1.3.8")]
|
|
public class MasterKey : BaseUnityPlugin
|
|
{
|
|
private void Awake()
|
|
{
|
|
new MasterKeyPatch().Enable();
|
|
}
|
|
}
|
|
}
|