Skip to content

Commit

Permalink
Actually add the component in question
Browse files Browse the repository at this point in the history
  • Loading branch information
SaphireLattice committed Sep 23, 2024
1 parent 4117ba9 commit 92289db
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using Content.Shared.DeviceLinking;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;

namespace Content.Server.Explosion.Components
{
/// <summary>
/// Sends a trigger when signal is received.
/// </summary>
[RegisterComponent]
public sealed partial class TimerStartOnSignalComponent : Component
{
[DataField("port", customTypeSerializer: typeof(PrototypeIdSerializer<SinkPortPrototype>))]
public string Port = "Timer";
}
}

0 comments on commit 92289db

Please sign in to comment.