Files
wwdpublic/Content.Shared/_White/Explosion/Components/OnShotTimerTriggerComponent.cs
Spatison 79fabb0068 [Fix] Yaml Linter (#277)
Fix yaml
2025-03-07 11:21:23 +07:00

13 lines
353 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._White.Explosion.Components;
[RegisterComponent, NetworkedComponent]
public sealed partial class OnShotTimerTriggerComponent : Component
{
/// <summary>
/// The timer will be reduced for that many seconds when shot.
/// </summary>
[DataField] public float DelayReduction;
}