6
StarHorizon_Public/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs
2026-01-18 12:53:36 +03:00

14 lines
367 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(SharedWieldableSystem))]
public sealed partial class MeleeRequiresWieldComponent : Component
{
}