mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-26 18:35:34 +00:00
9 lines
145 B
C#
9 lines
145 B
C#
namespace QSB.QuantumSync
|
|
{
|
|
public interface IQSBQuantumObject
|
|
{
|
|
uint ControllingPlayer { get; set; }
|
|
bool IsEnabled { get; set; }
|
|
}
|
|
}
|