mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-17 19:11:32 +00:00
18 lines
466 B
C#
18 lines
466 B
C#
using QSB.Player;
|
|
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);
|
|
VisibilityObject GetVisibilityObject();
|
|
void OnTakeProbeSnapshot(PlayerInfo player, ProbeCamera.ID cameraId);
|
|
void OnRemoveProbeSnapshot(PlayerInfo player);
|
|
} |