Files
crystall-punk-14/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs

14 lines
361 B
C#
Raw Permalink Normal View History

2023-06-01 12:27:19 +10:00
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>
2023-06-01 12:27:19 +10:00
[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))]
public sealed partial class MeleeRequiresWieldComponent : Component
{
}