using Robust.Shared.GameObjects; namespace Content.Server.Destructible.Thresholds.Behaviors { public interface IThresholdBehavior { /// /// Executes this behavior. /// /// The entity that owns this behavior. /// /// An instance of to pull dependencies /// and other systems from. /// void Execute(EntityUid owner, DestructibleSystem system); } }