mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 06:51:36 +00:00
15 lines
291 B
C#
15 lines
291 B
C#
using QSB.SectorSync;
|
|
using QSB.SectorSync.WorldObjects;
|
|
|
|
namespace QSB.Syncs
|
|
{
|
|
public interface ISectoredSync<T> : ISync<T>
|
|
{
|
|
SectorSync.SectorSync SectorSync { get; }
|
|
QSBSector ReferenceSector { get; }
|
|
TargetType Type { get; }
|
|
|
|
void SetReferenceSector(QSBSector sector);
|
|
}
|
|
}
|