2020-08-29 03:33:42 -07:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Server.MachineLinking.Components
|
2020-08-29 03:33:42 -07:00
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class SignalLinkerComponent : Component
|
2020-08-29 03:33:42 -07:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
2022-04-04 01:13:03 -05:00
|
|
|
|
public EntityUid? savedTransmitter;
|
|
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public EntityUid? savedReceiver;
|
2020-08-29 03:33:42 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|