This commit is contained in:
JohnCorby 2021-12-18 12:47:37 -08:00
parent 07caf6129b
commit c9d2dfd733
2 changed files with 2 additions and 3 deletions

View File

@ -15,7 +15,7 @@ namespace QSB.SectorSync
public bool IsReady { get; private set; }
public readonly List<QSBSector> FakeSectors = new();
public readonly List<BaseSectoredSync> SectoredSyncs = new();
public readonly List<IBaseSectoredSync> SectoredSyncs = new();
#region repeating timer

View File

@ -1,12 +1,11 @@
using OWML.Common;
using QSB.LogSync.Events;
using QSB.Player;
using QSB.SectorSync;
using QSB.SectorSync.WorldObjects;
using QSB.Utility;
using QSB.WorldSync;
using QuantumUNET.Transport;
using System.Diagnostics;
using UnityEngine;
namespace QSB.Syncs.Sectored
{