From 90866b8bc856113f29ad11d791d4faf52c6beade Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Sun, 19 Dec 2021 21:17:50 -0800 Subject: [PATCH] remove IRepeating, meant to do this earlier, whoops --- QSB/SectorSync/QSBSectorManager.cs | 2 +- QSB/Utility/IRepeating.cs | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 QSB/Utility/IRepeating.cs diff --git a/QSB/SectorSync/QSBSectorManager.cs b/QSB/SectorSync/QSBSectorManager.cs index 75b32540..db4e4127 100644 --- a/QSB/SectorSync/QSBSectorManager.cs +++ b/QSB/SectorSync/QSBSectorManager.cs @@ -9,7 +9,7 @@ using UnityEngine; namespace QSB.SectorSync { - public class QSBSectorManager : WorldObjectManager, IRepeating + public class QSBSectorManager : WorldObjectManager { public static QSBSectorManager Instance { get; private set; } public bool IsReady { get; private set; } diff --git a/QSB/Utility/IRepeating.cs b/QSB/Utility/IRepeating.cs deleted file mode 100644 index da45c714..00000000 --- a/QSB/Utility/IRepeating.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace QSB.Utility -{ - public interface IRepeating - { - void Invoke(); - } -}