2021-08-27 17:46:02 +02:00
|
|
|
|
using Content.Shared.MachineLinking;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.MachineLinking.Components
|
|
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class TwoWayLeverComponent : Component
|
2021-08-27 17:46:02 +02:00
|
|
|
|
{
|
2022-04-04 01:13:03 -05:00
|
|
|
|
public TwoWayLeverState State;
|
2021-08-27 17:46:02 +02:00
|
|
|
|
|
|
|
|
|
|
public bool NextSignalLeft;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|