CWX-mods/Live/CWX_MasterKey/MasterKey.cs
2023-02-12 22:09:45 +00:00

14 lines
261 B
C#

using BepInEx;
namespace CWX_MasterKey
{
[BepInPlugin("com.CWX.MasterKey", "CWX-MasterKey", "1.4.1")]
public class MasterKey : BaseUnityPlugin
{
private void Awake()
{
new MasterKeyPatch().Enable();
}
}
}