Files
tbd-station-14/Content.Server/MachineLinking/Events/SignalReceivedEvent.cs

19 lines
488 B
C#

using Content.Server.DeviceLinking.Components;
namespace Content.Server.MachineLinking.Events
{
public sealed class SignalReceivedEvent : EntityEventArgs
{
public readonly string Port;
public readonly SignalState State;
public readonly EntityUid? Trigger;
public SignalReceivedEvent(string port, EntityUid? trigger, SignalState state)
{
Port = port;
Trigger = trigger;
State = state;
}
}
}