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