mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:10:55 +01:00
12 lines
320 B
C#
12 lines
320 B
C#
using Content.Shared.Damage;
|
|
|
|
namespace Content.Server.Wieldable.Components
|
|
{
|
|
[RegisterComponent, Access(typeof(WieldableSystem))]
|
|
public sealed class IncreaseDamageOnWieldComponent : Component
|
|
{
|
|
[DataField("damage", required: true)]
|
|
public DamageSpecifier BonusDamage = default!;
|
|
}
|
|
}
|