0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
modules/project/Aki.Debugging/AkiDebuggingPlugin.cs

29 lines
672 B
C#
Raw Normal View History

2023-03-03 18:52:31 +00:00
using System;
using Aki.Common;
2023-03-03 18:52:31 +00:00
using Aki.Debugging.Patches;
using BepInEx;
namespace Aki.Debugging
{
[BepInPlugin("com.spt-aki.debugging", "AKI.Debugging", AkiPluginInfo.PLUGIN_VERSION)]
2023-03-03 18:52:31 +00:00
public class AkiDebuggingPlugin : BaseUnityPlugin
{
public AkiDebuggingPlugin()
{
Logger.LogInfo("Loading: Aki.Debugging");
try
{
// new CoordinatesPatch().Enable();
}
catch (Exception ex)
{
Logger.LogError($"{GetType().Name}: {ex}");
throw;
}
Logger.LogInfo("Completed: Aki.Debugging");
}
}
}