Files
Tarkov-UIFixes/Plugin.cs
2024-05-14 23:17:29 -07:00

29 lines
869 B
C#

using BepInEx;
namespace UIFixes
{
[BepInPlugin(PluginInfo.PLUGIN_GUID, PluginInfo.PLUGIN_NAME, PluginInfo.PLUGIN_VERSION)]
public class Plugin : BaseUnityPlugin
{
private void Awake()
{
Settings.Init(Config);
EditBuildScreenPatch.Enable();
new TransferConfirmPatch().Enable();
new MailReceiveAllPatch().Enable();
ScrollPatches.Enable();
WeaponZoomPatch.Enable();
new WeaponBindingPatch().Enable();
new DisabledActionsPatch().Enable();
SwapPatch.Enable();
new TooltipPatch().Enable();
ItemPanelPatches.Enable();
new ContainerStackPatch().Enable();
DialogPatches.Enable();
ItemPanelResizePatches.Enable();
ProductionPanelPatches.Enable();
}
}
}