Files
tbd-station-14/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs
2025-08-03 21:20:37 +02:00

11 lines
323 B
C#

namespace Content.Server.Destructible.Thresholds.Behaviors;
[DataDefinition]
public sealed partial class TimerStartBehavior : IThresholdBehavior
{
public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null)
{
system.TriggerSystem.ActivateTimerTrigger(owner, cause);
}
}