13 lines
339 B
C#
13 lines
339 B
C#
using Content.Server.MachineLinking.System;
|
|
|
|
namespace Content.Server.MachineLinking.Components
|
|
{
|
|
[RegisterComponent]
|
|
[Friend(typeof(SignalLinkerSystem))]
|
|
public sealed class SignalReceiverComponent : Component
|
|
{
|
|
[DataField("inputs")]
|
|
public Dictionary<string, List<PortIdentifier>> Inputs = new();
|
|
}
|
|
}
|