2023-07-08 23:42:42 +03:00
|
|
|
using BepInEx;
|
|
|
|
using IcyClawz.CustomInteractions;
|
|
|
|
|
|
|
|
namespace IcyClawz.ItemContextMenuExt
|
|
|
|
{
|
2023-10-15 13:39:51 +03:00
|
|
|
[BepInPlugin("com.IcyClawz.ItemContextMenuExt", "IcyClawz.ItemContextMenuExt", "1.2.1")]
|
2023-07-08 23:42:42 +03:00
|
|
|
public class Plugin : BaseUnityPlugin
|
|
|
|
{
|
|
|
|
private void Awake()
|
|
|
|
{
|
|
|
|
CustomInteractionsManager.Register(new CustomInteractionsProvider());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|