Files
tbd-station-14/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
2023-05-14 13:15:18 +10:00

13 lines
279 B
C#

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