13 lines
381 B
C#
13 lines
381 B
C#
using BepInEx;
|
|
using IcyClawz.CustomInteractions;
|
|
|
|
namespace IcyClawz.ItemContextMenuExt;
|
|
|
|
[BepInPlugin("com.IcyClawz.ItemContextMenuExt", "IcyClawz.ItemContextMenuExt", "1.5.0")]
|
|
[BepInDependency("com.IcyClawz.CustomInteractions")]
|
|
public class Plugin : BaseUnityPlugin
|
|
{
|
|
private void Awake() =>
|
|
CustomInteractionsManager.Register(new CustomInteractionsProvider());
|
|
}
|