remove IRepeating, meant to do this earlier, whoops

This commit is contained in:
JohnCorby 2021-12-19 21:17:50 -08:00
parent 3ef757ad27
commit 90866b8bc8
2 changed files with 1 additions and 8 deletions

View File

@ -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; }

View File

@ -1,7 +0,0 @@
namespace QSB.Utility
{
public interface IRepeating
{
void Invoke();
}
}