Implement unarmed combat

This commit is contained in:
ShadowCommander
2020-06-21 18:31:56 -07:00
parent 8e23f8fd40
commit 9bf53a4218
3 changed files with 37 additions and 12 deletions

View File

@@ -0,0 +1,12 @@

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";
}
}