2021-08-27 17:46:02 +02:00
|
|
|
namespace Content.Server.MachineLinking.Events
|
|
|
|
|
{
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class SignalReceivedEvent : EntityEventArgs
|
2021-08-27 17:46:02 +02:00
|
|
|
{
|
|
|
|
|
public readonly string Port;
|
2023-02-10 17:45:38 -06:00
|
|
|
public readonly EntityUid? Trigger;
|
2021-08-27 17:46:02 +02:00
|
|
|
|
2023-02-10 17:45:38 -06:00
|
|
|
public SignalReceivedEvent(string port, EntityUid? trigger)
|
2021-08-27 17:46:02 +02:00
|
|
|
{
|
|
|
|
|
Port = port;
|
2023-02-10 17:45:38 -06:00
|
|
|
Trigger = trigger;
|
2021-08-27 17:46:02 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|