CWX-mods/Live/CWX_LockPicking/LockPicker.cs

15 lines
272 B
C#
Raw Normal View History

using BepInEx;
namespace CWX_LockPicking
{
[BepInPlugin("com.CWX.LockPicker", "CWX-LockPicker", "1.0.0")]
public class LockPicker : BaseUnityPlugin
{
private void Awake()
{
new LockPickerMenuPatch().Enable();
}
}
}
2023-10-06 18:46:03 +01:00