Merge pull request #1184 from ShadowCommander/UnarmedAttack

Implement unarmed combat
This commit is contained in:
ShadowCommander
2020-06-23 08:17:32 -07:00
committed by GitHub
6 changed files with 49 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Weapon.Melee
{
[RegisterComponent]
public class UnarmedCombatComponent : MeleeWeaponComponent
{
public override string Name => "UnarmedCombat";
}
}