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()); }