mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
13 lines
353 B
C#
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;
|
|
}
|