Files
tbd-station-14/Content.Server/Destructible/Thresholds/Behaviors/IThresholdBehavior.cs
Javier Guardia Fernández 42aaba9a5d Remove most IEntity usages from explosions (#5240)
* Remove most IEntity usages from Destructible and Explosions

* Perform a minute amount of cleanup

* Fix build
2021-11-09 21:24:35 +01:00

18 lines
559 B
C#

using Robust.Shared.GameObjects;
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);
}
}