From 056a581f603c63557e19e716d817ce971fbdb6f2 Mon Sep 17 00:00:00 2001 From: NorbiPeti Date: Wed, 12 May 2021 01:06:00 +0200 Subject: [PATCH] Rename API references --- TBConsole/TBConsole.csproj | 6 +++--- TBConsole/TBConsoleMod.cs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/TBConsole/TBConsole.csproj b/TBConsole/TBConsole.csproj index c7a8ece..988c6ae 100644 --- a/TBConsole/TBConsole.csproj +++ b/TBConsole/TBConsole.csproj @@ -13,11 +13,11 @@ - - ..\..\GamecraftModdingAPI\GamecraftModdingAPI\bin\Debug\net472\GamecraftModdingAPI.dll + + ..\..\ref\Plugins\TechbloxModdingAPI.dll - ..\..\GamecraftModdingAPI\GamecraftModdingAPI\bin\Debug\net472\IllusionPlugin.dll + ..\..\ref\TechbloxPreview_Data\Managed\IllusionPlugin.dll ..\..\ref\TechbloxPreview_Data\Managed\UnityEngine.CoreModule.dll diff --git a/TBConsole/TBConsoleMod.cs b/TBConsole/TBConsoleMod.cs index a7f3e8b..2b253b0 100644 --- a/TBConsole/TBConsoleMod.cs +++ b/TBConsole/TBConsoleMod.cs @@ -3,8 +3,8 @@ using System.IO; using System.Net; using System.Reflection; using System.Threading.Tasks; -using GamecraftModdingAPI.Commands; using IllusionPlugin; +using TechbloxModdingAPI.Commands; using UnityEngine; namespace TBConsole @@ -18,7 +18,7 @@ namespace TBConsole private UnityLogHandler _logHandler; public override void OnApplicationStart() { - GamecraftModdingAPI.Main.Init(); + TechbloxModdingAPI.Main.Init(); _server = new WebServer(CommandReceived); _server.Start(); } @@ -54,7 +54,7 @@ namespace TBConsole public override void OnApplicationQuit() { _server.Stop(); - GamecraftModdingAPI.Main.Shutdown(); + TechbloxModdingAPI.Main.Shutdown(); } public static void Main(string[] args)