diff --git a/CheatEnabler/Patches/DysonSpherePatch.cs b/CheatEnabler/Patches/DysonSpherePatch.cs index 574bb65..306bbf1 100644 --- a/CheatEnabler/Patches/DysonSpherePatch.cs +++ b/CheatEnabler/Patches/DysonSpherePatch.cs @@ -4,6 +4,7 @@ using System.Reflection.Emit; using BepInEx.Configuration; using HarmonyLib; using UXAssist.Common; +using GameLogicProc = UXAssist.Common.GameLogic; namespace CheatEnabler.Patches; diff --git a/CheatEnabler/Patches/FactoryPatch.cs b/CheatEnabler/Patches/FactoryPatch.cs index 7e32722..cb1012c 100644 --- a/CheatEnabler/Patches/FactoryPatch.cs +++ b/CheatEnabler/Patches/FactoryPatch.cs @@ -8,6 +8,7 @@ using HarmonyLib; using UnityEngine; using UnityEngine.UI; using UXAssist.Common; +using GameLogicProc = UXAssist.Common.GameLogic; namespace CheatEnabler.Patches; diff --git a/UXAssist/Common/GameLogicProc.cs b/UXAssist/Common/GameLogic.cs similarity index 93% rename from UXAssist/Common/GameLogicProc.cs rename to UXAssist/Common/GameLogic.cs index 8515294..3762995 100644 --- a/UXAssist/Common/GameLogicProc.cs +++ b/UXAssist/Common/GameLogic.cs @@ -3,7 +3,7 @@ using HarmonyLib; namespace UXAssist.Common; -public class GameLogicProc : PatchImpl +public class GameLogic : PatchImpl { public static Action OnDataLoaded; public static Action OnGameBegin; diff --git a/UXAssist/Functions/UIFunctions.cs b/UXAssist/Functions/UIFunctions.cs index f77ff81..d624e3e 100644 --- a/UXAssist/Functions/UIFunctions.cs +++ b/UXAssist/Functions/UIFunctions.cs @@ -6,6 +6,7 @@ using System.Linq; using System.Collections.Generic; using UXAssist.UI; using UXAssist.Common; +using GameLogicProc = UXAssist.Common.GameLogic; namespace UXAssist.Functions; diff --git a/UXAssist/Patches/DysonSpherePatch.cs b/UXAssist/Patches/DysonSpherePatch.cs index a31f1ab..a7d2bb3 100644 --- a/UXAssist/Patches/DysonSpherePatch.cs +++ b/UXAssist/Patches/DysonSpherePatch.cs @@ -5,6 +5,7 @@ using BepInEx.Configuration; using HarmonyLib; using UnityEngine.UI; using UXAssist.Common; +using GameLogicProc = UXAssist.Common.GameLogic; namespace UXAssist.Patches; diff --git a/UXAssist/Patches/FactoryPatch.cs b/UXAssist/Patches/FactoryPatch.cs index 7c065e4..51641ff 100644 --- a/UXAssist/Patches/FactoryPatch.cs +++ b/UXAssist/Patches/FactoryPatch.cs @@ -10,6 +10,7 @@ using HarmonyLib; using UnityEngine; using UnityEngine.UI; using UXAssist.Common; +using GameLogicProc = UXAssist.Common.GameLogic; namespace UXAssist.Patches; diff --git a/UXAssist/Patches/LogisticsPatch.cs b/UXAssist/Patches/LogisticsPatch.cs index 5f59108..6f680fb 100644 --- a/UXAssist/Patches/LogisticsPatch.cs +++ b/UXAssist/Patches/LogisticsPatch.cs @@ -10,6 +10,7 @@ using UnityEngine.Serialization; using UnityEngine.UI; using UXAssist.Common; using Object = UnityEngine.Object; +using GameLogicProc = UXAssist.Common.GameLogic; namespace UXAssist.Patches; diff --git a/UXAssist/Patches/TechPatch.cs b/UXAssist/Patches/TechPatch.cs index a8442fb..deffe07 100644 --- a/UXAssist/Patches/TechPatch.cs +++ b/UXAssist/Patches/TechPatch.cs @@ -5,6 +5,7 @@ using BepInEx.Configuration; using HarmonyLib; using UnityEngine.UI; using UXAssist.Common; +using GameLogicProc = UXAssist.Common.GameLogic; namespace UXAssist.Patches; diff --git a/UXAssist/UXAssist.cs b/UXAssist/UXAssist.cs index 3b9fd12..0289ddd 100644 --- a/UXAssist/UXAssist.cs +++ b/UXAssist/UXAssist.cs @@ -14,6 +14,7 @@ using UXAssist.Functions; using UXAssist.Patches; using UXAssist.UI; using Util = UXAssist.Common.Util; +using GameLogicProc = UXAssist.Common.GameLogic; namespace UXAssist; diff --git a/UniverseGenTweaks/BirthPlanetPatch.cs b/UniverseGenTweaks/BirthPlanetPatch.cs index 93b4406..381a382 100644 --- a/UniverseGenTweaks/BirthPlanetPatch.cs +++ b/UniverseGenTweaks/BirthPlanetPatch.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using BepInEx.Configuration; using HarmonyLib; -using UXAssist.Common; +using GameLogicProc = UXAssist.Common.GameLogic; namespace UniverseGenTweaks; public static class BirthPlanetPatch