13 lines
381 B
C#
Raw Normal View History

using BepInEx;
using IcyClawz.CustomInteractions;
2024-03-05 22:48:21 +02:00
namespace IcyClawz.ItemContextMenuExt;
[BepInPlugin("com.IcyClawz.ItemContextMenuExt", "IcyClawz.ItemContextMenuExt", "1.5.0")]
2024-03-05 22:48:21 +02:00
[BepInDependency("com.IcyClawz.CustomInteractions")]
public class Plugin : BaseUnityPlugin
{
2024-03-05 22:48:21 +02:00
private void Awake() =>
CustomInteractionsManager.Register(new CustomInteractionsProvider());
}