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

20 lines
426 B
C#

using System;
using Robust.Shared.GameObjects;
namespace Content.Server.MachineLinking.Events
{
public sealed class SignalValueRequestedEvent : HandledEntityEventArgs
{
public readonly string Port;
public readonly Type Type;
public object? Signal;
public SignalValueRequestedEvent(string port, Type type)
{
Port = port;
Type = type;
}
}
}