15 lines
371 B
C#
15 lines
371 B
C#
using BepInEx;
|
|
using IcyClawz.CustomInteractions;
|
|
|
|
namespace IcyClawz.ItemContextMenuExt
|
|
{
|
|
[BepInPlugin("com.IcyClawz.ItemContextMenuExt", "IcyClawz.ItemContextMenuExt", "1.2.1")]
|
|
public class Plugin : BaseUnityPlugin
|
|
{
|
|
private void Awake()
|
|
{
|
|
CustomInteractionsManager.Register(new CustomInteractionsProvider());
|
|
}
|
|
}
|
|
}
|