Files
wwdpublic/Content.Shared/DeviceLinking/Components/TwoWayLeverComponent.cs
metalgearsloth 9e366f3119 Predict two-way levers (#25043)
* Predict two-way levers

Annoys me the rare occasions I touch cargo. Doesn't predict the signal but at least the lever responds immediately.

* space

* a

(cherry picked from commit 05a2ddff1cc415c3bdf1e15ef3a2c953bcb5384b)
2024-02-18 22:46:26 +01:00

27 lines
698 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared.DeviceLinking.Components;
/// <summary>
/// Simple ternary state for device linking.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class TwoWayLeverComponent : Component
{
[DataField, AutoNetworkedField]
public TwoWayLeverState State;
[DataField, AutoNetworkedField]
public bool NextSignalLeft;
[DataField]
public ProtoId<SourcePortPrototype> LeftPort = "Left";
[DataField]
public ProtoId<SourcePortPrototype> RightPort = "Right";
[DataField]
public ProtoId<SourcePortPrototype> MiddlePort = "Middle";
}