quantum-space-buddies/QSB/QuantumSync/WorldObjects/IQSBQuantumObject.cs
2022-01-11 19:21:45 -08:00

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);
}
}