2023-03-03 18:52:31 +00:00
|
|
|
|
using System;
|
2023-06-21 13:43:15 +03:00
|
|
|
|
using Aki.Common;
|
2023-03-03 18:52:31 +00:00
|
|
|
|
using Aki.Debugging.Patches;
|
|
|
|
|
using BepInEx;
|
|
|
|
|
|
|
|
|
|
namespace Aki.Debugging
|
|
|
|
|
{
|
2023-06-21 13:43:15 +03:00
|
|
|
|
[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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|