2024-03-05 22:48:21 +02:00

13 lines
381 B
C#

using BepInEx;
using IcyClawz.CustomInteractions;
namespace IcyClawz.ItemContextMenuExt;
[BepInPlugin("com.IcyClawz.ItemContextMenuExt", "IcyClawz.ItemContextMenuExt", "1.2.1")]
[BepInDependency("com.IcyClawz.CustomInteractions")]
public class Plugin : BaseUnityPlugin
{
private void Awake() =>
CustomInteractionsManager.Register(new CustomInteractionsProvider());
}