Files
tbd-station-14/Content.Server/Armor/ArmorComponent.cs
2022-02-16 18:23:23 +11:00

14 lines
346 B
C#

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