mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
15 lines
282 B
C#
15 lines
282 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.MachineLinking.Events
|
|
{
|
|
public sealed class InvokePortEvent : EntityEventArgs
|
|
{
|
|
public readonly string Port;
|
|
|
|
public InvokePortEvent(string port)
|
|
{
|
|
Port = port;
|
|
}
|
|
}
|
|
}
|