15 lines
371 B
C#

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