Files
tbd-station-14/Content.Shared/_Offbrand/Wounds/BrainDamageOnDamageComponent.cs
Janet Blackquill 5fa17e22a1 De-MPL Offbrand
2025-09-27 22:43:24 -04:00

16 lines
465 B
C#

using Content.Shared.Damage.Prototypes;
using Content.Shared.FixedPoint;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
namespace Content.Shared._Offbrand.Wounds;
[RegisterComponent, NetworkedComponent]
[Access(typeof(BrainDamageOnDamageSystem))]
public sealed partial class BrainDamageOnDamageComponent : Component
{
[DataField(required: true)]
public List<OrganDamageThresholdSpecifier> Thresholds;
}