forked from CWX/CWX-mods
15 lines
272 B
C#
15 lines
272 B
C#
using BepInEx;
|
|
|
|
namespace CWX_LockPicking
|
|
{
|
|
[BepInPlugin("com.CWX.LockPicker", "CWX-LockPicker", "1.0.0")]
|
|
public class LockPicker : BaseUnityPlugin
|
|
{
|
|
private void Awake()
|
|
{
|
|
new LockPickerMenuPatch().Enable();
|
|
}
|
|
}
|
|
}
|
|
|