Files
tbd-station-14/Content.Server/Destructible/Thresholds/Behaviors/IThresholdBehavior.cs
2022-05-13 17:59:03 +10:00

16 lines
525 B
C#

namespace Content.Server.Destructible.Thresholds.Behaviors
{
public interface IThresholdBehavior
{
/// <summary>
/// Executes this behavior.
/// </summary>
/// <param name="owner">The entity that owns this behavior.</param>
/// <param name="system">
/// An instance of <see cref="DestructibleSystem"/> to pull dependencies
/// and other systems from.
/// </param>
void Execute(EntityUid owner, DestructibleSystem system);
}
}