Files
tbd-station-14/Content.Server/MachineLinking/Events/InvokePortEvent.cs
2022-02-16 18:23:23 +11:00

17 lines
370 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.MachineLinking.Events
{
public sealed class InvokePortEvent : EntityEventArgs
{
public readonly string Port;
public readonly object? Value;
public InvokePortEvent(string port, object? value = null)
{
Port = port;
Value = value;
}
}
}