From b76094234c2321736fe822633bf6b2df767983e8 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Sat, 30 Nov 2019 23:42:03 -0600 Subject: [PATCH] Fixed interface reference for compilation --- BSIPA-ModList/Plugin.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/BSIPA-ModList/Plugin.cs b/BSIPA-ModList/Plugin.cs index b60c24a2..3cbe8d83 100644 --- a/BSIPA-ModList/Plugin.cs +++ b/BSIPA-ModList/Plugin.cs @@ -29,7 +29,7 @@ namespace BSIPA_ModList /// /// The main plugin type for the in-game mod list mod. /// - internal class Plugin : IBeatSaberPlugin + internal class Plugin : IPlugin { internal static IConfigProvider provider; internal static Ref config; @@ -110,5 +110,10 @@ namespace BSIPA_ModList public void OnUpdate() { } + + public void OnEnable() + { + + } } }