diff --git a/IPA.Loader/Config/Config.cs b/IPA.Loader/Config/Config.cs index 3832b8f2..a6f4a66c 100644 --- a/IPA.Loader/Config/Config.cs +++ b/IPA.Loader/Config/Config.cs @@ -166,7 +166,7 @@ namespace IPA.Config /// an action to perform on value change /// a to an ever-changing value, mirroring whatever the file contains. public static Ref MakeLink(this IConfigProvider config, Action> onChange = null) - { + { // TODO: rework this stuff Ref @ref = config.Parse(); void ChangeDelegate() { diff --git a/IPA.Loader/Config/IConfigProvider.cs b/IPA.Loader/Config/IConfigProvider.cs index 852e348b..69ff72c8 100644 --- a/IPA.Loader/Config/IConfigProvider.cs +++ b/IPA.Loader/Config/IConfigProvider.cs @@ -7,7 +7,7 @@ namespace IPA.Config /// An interface for configuration providers. /// public interface IConfigProvider - { + { // TODO: rework this /// /// Loads the data provided by this into an object of type . /// diff --git a/IPA.Loader/Loader/PluginLoader.cs b/IPA.Loader/Loader/PluginLoader.cs index 4fdb6ad6..b85167db 100644 --- a/IPA.Loader/Loader/PluginLoader.cs +++ b/IPA.Loader/Loader/PluginLoader.cs @@ -630,7 +630,7 @@ namespace IPA.Loader Logger.loader.Warn($"Mod {meta.Name} developed for game version {meta.Manifest.GameVersion}, so it may not work properly."); try - { + { // TODO: add dependency checking for when features prevent loading Load(meta); Feature denyingFeature = null;