Files
tbd-station-14/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
2023-06-01 12:27:19 +10:00

14 lines
344 B
C#

using Content.Shared.Wieldable;
using Robust.Shared.GameStates;
namespace Content.Shared.Weapons.Ranged.Components;
/// <summary>
/// Indicates that this gun requires wielding to be useable.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))]
public sealed class GunRequiresWieldComponent : Component
{
}