quantum-space-buddies/QSB/QuantumSync/WorldObjects/IQSBQuantumObject.cs

15 lines
329 B
C#
Raw Normal View History

2021-02-24 10:45:25 +00:00
using QSB.WorldSync;
2021-12-02 12:38:38 +00:00
using System.Collections.Generic;
2021-02-24 10:45:25 +00:00
2022-03-03 03:46:33 +00:00
namespace QSB.QuantumSync.WorldObjects;
public interface IQSBQuantumObject : IWorldObject
2021-01-26 17:08:02 +00:00
{
2022-03-03 03:46:33 +00:00
uint ControllingPlayer { get; set; }
bool IsEnabled { get; }
2021-12-02 12:38:38 +00:00
2022-03-03 03:46:33 +00:00
List<Shape> GetAttachedShapes();
2022-03-03 03:46:33 +00:00
void SetIsQuantum(bool isQuantum);
2022-03-07 20:34:35 +00:00
VisibilityObject GetVisibilityObject();
}