mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 09:32:38 +00:00
15 lines
318 B
C#
15 lines
318 B
C#
using QSB.WorldSync;
|
|
using System.Collections.Generic;
|
|
|
|
namespace QSB.QuantumSync
|
|
{
|
|
public interface IQSBQuantumObject : IWorldObjectTypeSubset
|
|
{
|
|
uint ControllingPlayer { get; set; }
|
|
bool IsEnabled { get; set; }
|
|
|
|
List<ShapeVisibilityTracker> GetVisibilityTrackers();
|
|
List<Shape> GetAttachedShapes();
|
|
}
|
|
}
|