using Content.Server.Destructible.Thresholds;
namespace Content.Server.Destructible
{
///
/// When attached to an , allows it to take damage
/// and triggers thresholds when reached.
///
[RegisterComponent]
public sealed partial class DestructibleComponent : Component
{
[DataField("thresholds")]
public List Thresholds = new();
}
}