Files
tbd-station-14/Content.Server/Armor/ArmorComponent.cs
2022-05-13 17:59:03 +10:00

12 lines
259 B
C#

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