Files
tbd-station-14/Content.Server/Explosion/Components/OnUseTimerTriggerComponent.cs
2022-02-16 18:23:23 +11:00

12 lines
291 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Explosion.Components
{
[RegisterComponent]
public sealed class OnUseTimerTriggerComponent : Component
{
[DataField("delay")] public float Delay = 0f;
}
}