12 lines
357 B
C#
12 lines
357 B
C#
using Content.Server.GameObjects.EntitySystems;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
using Robust.Shared.Interfaces.Serialization;
|
|
|
|
namespace Content.Server.GameObjects.Components.Destructible.Thresholds.Behavior
|
|
{
|
|
public interface IThresholdBehavior : IExposeData
|
|
{
|
|
void Trigger(IEntity owner, DestructibleSystem system);
|
|
}
|
|
}
|