* Remote Explosives * Apparently we forgot to push the changed files. Dumb. We Forgor.# * Made Requested Changes. * And more changes. * Added requested changes and tweaked a few other things. * Fixed RSI issue (hopefully.) Readded Ensurecomp.
14 lines
317 B
C#
14 lines
317 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.MachineLinking.Components
|
|
{
|
|
/// <summary>
|
|
/// Sends out a signal to machine linked objects.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class SignallerComponent : Component
|
|
{
|
|
public const string Port = "Pressed";
|
|
}
|
|
}
|