eft-lootvalueex/Plugin/Plugin.cs
Yui db4003caa7
feat: get best trader offer for items
TODO: Make a better conversion for USD/EUR to RUB
2024-11-08 17:17:10 -03:00

29 lines
956 B
C#

using BepInEx;
using BepInEx.Logging;
namespace LootValueEX
{
[BepInPlugin("pro.kaiden.lootvalueex", "LootValueEX", "0.1.0")]
internal class Plugin : BaseUnityPlugin
{
internal static ManualLogSource Log { get; private set; }
private void Awake()
{
Log = base.Logger;
new Patches.TraderClassPatch().Enable();
new Patches.Tooltips.GridItemTooltipPatch().Enable();
new Patches.Tooltips.TooltipPatch().Enable();
new Patches.Tooltips.InsuranceGridPatch().Enable();
new Patches.Tooltips.InsuranceSlotPatch().Enable();
new Patches.Tooltips.ItemPricePatch().Enable();
new Patches.Tooltips.TradingItemPatch().Enable();
new Patches.Tooltips.HandbookPatching().Enable();
new Patches.Tooltips.BarterItemPatch().Enable();
new Patches.Screens.InventoryScreenPatch().Enable();
}
}
}