13 lines
279 B
C#
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
|
|
{
|
|
|
|
}
|