mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +00:00
16 lines
459 B
C#
16 lines
459 B
C#
using QSB.EchoesOfTheEye.EclipseDoors.VariableSync;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.EchoesOfTheEye.EclipseDoors.WorldObjects;
|
|
|
|
internal class QSBEclipseDoorController : VariableSyncedWorldObject<EclipseDoorController, EclipseDoorVariableSyncer>
|
|
{
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
|
|
}
|
|
|
|
public override string ReturnLabel()
|
|
=> $"{base.ReturnLabel()}\r\n- SyncerValue:{Syncer.Value}\r\n- HasAuth:{Syncer.netIdentity.hasAuthority}";
|
|
}
|