2022-05-12 20:46:20 +12:00
|
|
|
using Content.Server.MachineLinking.System;
|
2020-08-29 03:33:42 -07:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.MachineLinking.Components
|
2020-08-29 03:33:42 -07:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(SignalLinkerSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class SignalReceiverComponent : Component
|
2020-08-29 03:33:42 -07:00
|
|
|
{
|
2021-08-27 17:46:02 +02:00
|
|
|
[DataField("inputs")]
|
2022-05-12 20:46:20 +12:00
|
|
|
public Dictionary<string, List<PortIdentifier>> Inputs = new();
|
2020-08-29 03:33:42 -07:00
|
|
|
}
|
|
|
|
|
}
|