mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-11 09:38:48 +00:00
13 lines
242 B
C#
13 lines
242 B
C#
|
using QSB.SectorSync.WorldObjects;
|
|||
|
|
|||
|
namespace QSB.Syncs
|
|||
|
{
|
|||
|
public interface ISectoredSync<T> : ISync<T>
|
|||
|
{
|
|||
|
SectorSync.SectorSync SectorSync { get; }
|
|||
|
QSBSector ReferenceSector { get; }
|
|||
|
|
|||
|
void SetReferenceSector(QSBSector sector);
|
|||
|
}
|
|||
|
}
|