Files
tbd-station-14/Content.Server/Armor/ArmorComponent.cs

12 lines
267 B
C#

using Content.Shared.Damage;
namespace Content.Server.Armor
{
[RegisterComponent]
public sealed partial class ArmorComponent : Component
{
[DataField("modifiers", required: true)]
public DamageModifierSet Modifiers = default!;
}
}