mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Don't impulsively change namespace brackets
This commit is contained in:
parent
1a56fe1ab2
commit
f11099d62f
@ -26,10 +26,10 @@ using UnityEngine;
|
|||||||
using UnityEngine.Events;
|
using UnityEngine.Events;
|
||||||
using static NewHorizons.External.Modules.ShipLogModule;
|
using static NewHorizons.External.Modules.ShipLogModule;
|
||||||
|
|
||||||
namespace NewHorizons;
|
namespace NewHorizons
|
||||||
|
|
||||||
public class NewHorizonsApi : INewHorizons
|
|
||||||
{
|
{
|
||||||
|
public class NewHorizonsApi : INewHorizons
|
||||||
|
{
|
||||||
[Obsolete("Create(Dictionary<string, object> config) is deprecated, please use LoadConfigs(IModBehaviour mod) instead")]
|
[Obsolete("Create(Dictionary<string, object> config) is deprecated, please use LoadConfigs(IModBehaviour mod) instead")]
|
||||||
public void Create(Dictionary<string, object> config)
|
public void Create(Dictionary<string, object> config)
|
||||||
{
|
{
|
||||||
@ -336,4 +336,5 @@ public class NewHorizonsApi : INewHorizons
|
|||||||
public string GetTranslationForUI(string text) => TranslationHandler.GetTranslation(text, TranslationHandler.TextType.UI);
|
public string GetTranslationForUI(string text) => TranslationHandler.GetTranslation(text, TranslationHandler.TextType.UI);
|
||||||
|
|
||||||
public string GetTranslationForOtherText(string text) => TranslationHandler.GetTranslation(text, TranslationHandler.TextType.OTHER);
|
public string GetTranslationForOtherText(string text) => TranslationHandler.GetTranslation(text, TranslationHandler.TextType.OTHER);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,10 +6,10 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace NewHorizons.Utility.Files;
|
namespace NewHorizons.Utility.Files
|
||||||
|
|
||||||
public static class AssetBundleUtilities
|
|
||||||
{
|
{
|
||||||
|
public static class AssetBundleUtilities
|
||||||
|
{
|
||||||
public static Dictionary<string, (AssetBundle bundle, bool keepLoaded)> AssetBundles = new Dictionary<string, (AssetBundle, bool)>();
|
public static Dictionary<string, (AssetBundle bundle, bool keepLoaded)> AssetBundles = new Dictionary<string, (AssetBundle, bool)>();
|
||||||
|
|
||||||
public static void ClearCache()
|
public static void ClearCache()
|
||||||
@ -146,4 +146,5 @@ public static class AssetBundleUtilities
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user