mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
20 lines
395 B
C#
20 lines
395 B
C#
using QSB.WorldSync;
|
|
|
|
namespace QSB.QuantumSync.WorldObjects
|
|
{
|
|
internal class QSBQuantumState : WorldObject<QuantumState>
|
|
{
|
|
public bool IsMeantToBeEnabled;
|
|
|
|
public void SetVisible(bool visible)
|
|
{
|
|
IsMeantToBeEnabled = visible;
|
|
AttachedObject.SetVisible(visible);
|
|
}
|
|
|
|
public override bool ShouldDisplayDebug() => false;
|
|
|
|
public override void SendResyncInfo(uint to) { }
|
|
}
|
|
}
|