Don't impulsively change namespace brackets

This commit is contained in:
Nick 2024-02-03 16:17:20 -05:00
parent 1a56fe1ab2
commit f11099d62f
2 changed files with 401 additions and 399 deletions

View File

@ -26,8 +26,8 @@ using UnityEngine;
using UnityEngine.Events;
using static NewHorizons.External.Modules.ShipLogModule;
namespace NewHorizons;
namespace NewHorizons
{
public class NewHorizonsApi : INewHorizons
{
[Obsolete("Create(Dictionary<string, object> config) is deprecated, please use LoadConfigs(IModBehaviour mod) instead")]
@ -337,3 +337,4 @@ public class NewHorizonsApi : INewHorizons
public string GetTranslationForOtherText(string text) => TranslationHandler.GetTranslation(text, TranslationHandler.TextType.OTHER);
}
}

View File

@ -6,8 +6,8 @@ using System.IO;
using System.Linq;
using UnityEngine;
namespace NewHorizons.Utility.Files;
namespace NewHorizons.Utility.Files
{
public static class AssetBundleUtilities
{
public static Dictionary<string, (AssetBundle bundle, bool keepLoaded)> AssetBundles = new Dictionary<string, (AssetBundle, bool)>();
@ -147,3 +147,4 @@ public static class AssetBundleUtilities
}
}
}
}