mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 08:50:43 -05:00
Co-authored-by: Dev <dev@dev.sp-tarkov.com> Co-authored-by: CWX <CWX@noreply.dev.sp-tarkov.com> Co-authored-by: DrakiaXYZ <drakiaxyz@noreply.dev.sp-tarkov.com> Co-authored-by: RaiRaiTheRaichu <rairaitheraichu@noreply.dev.sp-tarkov.com> Co-authored-by: CWX <cwx@noreply.dev.sp-tarkov.com> Co-authored-by: Kaeno <e> Reviewed-on: SPT-AKI/Modules#33
30 lines
717 B
C#
30 lines
717 B
C#
using System;
|
|
using Aki.Common;
|
|
using Aki.Debugging.Patches;
|
|
using BepInEx;
|
|
|
|
namespace Aki.Debugging
|
|
{
|
|
[BepInPlugin("com.spt-aki.debugging", "AKI.Debugging", AkiPluginInfo.PLUGIN_VERSION)]
|
|
public class AkiDebuggingPlugin : BaseUnityPlugin
|
|
{
|
|
public AkiDebuggingPlugin()
|
|
{
|
|
Logger.LogInfo("Loading: Aki.Debugging");
|
|
|
|
try
|
|
{
|
|
// new CoordinatesPatch().Enable();
|
|
new EndRaidDebug().Enable();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.LogError($"{GetType().Name}: {ex}");
|
|
throw;
|
|
}
|
|
|
|
Logger.LogInfo("Completed: Aki.Debugging");
|
|
}
|
|
}
|
|
}
|