14 lines
353 B
C#
14 lines
353 B
C#
using Content.Shared.Wieldable;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Weapons.Melee.Components;
|
|
|
|
/// <summary>
|
|
/// Indicates that this meleeweapon requires wielding to be useable.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))]
|
|
public sealed class MeleeRequiresWieldComponent : Component
|
|
{
|
|
|
|
}
|