Files
tbd-station-14/Content.Server/GameObjects/Components/Weapon/Melee/UnarmedCombatComponent.cs
2020-06-21 18:31:56 -07:00

13 lines
306 B
C#

using Content.Server.GameObjects.EntitySystems;
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Weapon.Melee
{
[RegisterComponent]
public class UnarmedCombatComponent : MeleeWeaponComponent
{
public override string Name => "UnarmedCombat";
}
}