Files
tbd-station-14/Content.Server/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
2022-02-16 18:23:23 +11:00

16 lines
485 B
C#

using Content.Shared.Damage;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Wieldable.Components
{
[RegisterComponent, Friend(typeof(WieldableSystem))]
public sealed class IncreaseDamageOnWieldComponent : Component
{
[DataField("modifiers", required: true)]
public DamageModifierSet Modifiers = default!;
}
}