* Selfdamage for melee. * Update base.yml --------- Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
11 lines
252 B
C#
11 lines
252 B
C#
using Content.Shared.Damage;
|
|
|
|
namespace Content.Server._CP14.MeleeWeapon.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class CP14MeleeSelfDamageComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public DamageSpecifier DamageToSelf;
|
|
}
|