mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 01:15:13 +01:00
11 lines
323 B
C#
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);
|
|
}
|
|
}
|