Files
tbd-station-14/Content.Server/GameObjects/Components/Weapon/Melee/UnarmedCombatComponent.cs
Vera Aguilera Puerto 62ce603858 Fix punching (#4141)
2021-06-06 02:05:57 +10:00

13 lines
362 B
C#

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