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

12 lines
301 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.Weapon.Melee.Components
{
// TODO: Remove this, just use MeleeWeapon...
[RegisterComponent]
[ComponentReference(typeof(MeleeWeaponComponent))]
public sealed class UnarmedCombatComponent : MeleeWeaponComponent
{
}
}