mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
16 lines
298 B
C#
16 lines
298 B
C#
using QSB.WorldSync;
|
|
using System.Collections.Generic;
|
|
|
|
namespace QSB.QuantumSync.WorldObjects
|
|
{
|
|
public interface IQSBQuantumObject : IWorldObject
|
|
{
|
|
uint ControllingPlayer { get; set; }
|
|
bool IsEnabled { get; }
|
|
|
|
List<Shape> GetAttachedShapes();
|
|
|
|
void SetIsQuantum(bool isQuantum);
|
|
}
|
|
}
|