2021-08-27 17:46:02 +02:00
|
|
|
using System;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.MachineLinking.Events
|
|
|
|
|
{
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class SignalValueRequestedEvent : HandledEntityEventArgs
|
2021-08-27 17:46:02 +02:00
|
|
|
{
|
|
|
|
|
public readonly string Port;
|
|
|
|
|
public readonly Type Type;
|
|
|
|
|
|
|
|
|
|
public object? Signal;
|
|
|
|
|
|
|
|
|
|
public SignalValueRequestedEvent(string port, Type type)
|
|
|
|
|
{
|
|
|
|
|
Port = port;
|
|
|
|
|
Type = type;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|