Files
crystall-punk-14/Content.Server/MachineLinking/Components/SignallerComponent.cs

14 lines
317 B
C#
Raw Normal View History

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";
}
}