From d794e7f8837745ab9074ca05cf0cee1b44f60202 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Mon, 19 Nov 2018 10:12:27 -0600 Subject: [PATCH] Formatting --- IPA.Loader/Config/ModPrefs.cs | 3 ++- IPA.Loader/PluginInterfaces/IPA/IPlugin.cs | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/IPA.Loader/Config/ModPrefs.cs b/IPA.Loader/Config/ModPrefs.cs index 709dbb6e..16dd5c7b 100644 --- a/IPA.Loader/Config/ModPrefs.cs +++ b/IPA.Loader/Config/ModPrefs.cs @@ -103,7 +103,8 @@ namespace IPA.Config /// /// the plugin to get the preferences file for public ModPrefs(IBeatSaberPlugin plugin) { - _instance = new IniFile(Path.Combine(Environment.CurrentDirectory, "UserData", "ModPrefs", $"{plugin.Name}.ini")); + _instance = new IniFile(Path.Combine(Environment.CurrentDirectory, "UserData", "ModPrefs", + $"{plugin.Name}.ini")); ModPrefss.Add(plugin, this); } diff --git a/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs b/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs index d3d7e17f..325d667f 100644 --- a/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs +++ b/IPA.Loader/PluginInterfaces/IPA/IPlugin.cs @@ -10,7 +10,6 @@ namespace IPA.Old [Obsolete("When building plugins for Beat Saber, use IBeatSaberPlugin")] public interface IPlugin { - /// /// Gets the name of the plugin. /// @@ -48,7 +47,6 @@ namespace IPA.Old /// void OnUpdate(); - /// /// Gets invoked on ever physics update. ///