10 lines
267 B
C#
10 lines
267 B
C#
namespace Content.Server.Weapon.Melee.Components
|
|
{
|
|
// TODO: Remove this, just use MeleeWeapon...
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(MeleeWeaponComponent))]
|
|
public sealed class UnarmedCombatComponent : MeleeWeaponComponent
|
|
{
|
|
}
|
|
}
|