2023-07-08 23:42:42 +03:00
|
|
|
using BepInEx;
|
|
|
|
using IcyClawz.CustomInteractions;
|
|
|
|
|
2024-03-05 22:48:21 +02:00
|
|
|
namespace IcyClawz.ItemContextMenuExt;
|
|
|
|
|
2024-07-10 23:03:39 +03:00
|
|
|
[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
|
2023-07-08 23:42:42 +03:00
|
|
|
{
|
2024-03-05 22:48:21 +02:00
|
|
|
private void Awake() =>
|
|
|
|
CustomInteractionsManager.Register(new CustomInteractionsProvider());
|
2023-07-08 23:42:42 +03:00
|
|
|
}
|