11 lines
267 B
C#
11 lines
267 B
C#
namespace Content.Server.Destructible.Thresholds.Behaviors;
|
|
|
|
[DataDefinition]
|
|
public sealed class TriggerBehavior : IThresholdBehavior
|
|
{
|
|
public void Execute(EntityUid owner, DestructibleSystem system)
|
|
{
|
|
system.TriggerSystem.Trigger(owner);
|
|
}
|
|
}
|