Files
14 lines
367 B
C#
14 lines
367 B
C#
|
|
using Content.Shared.Wieldable;
|
||
|
Proto-kinetic crusher (#16277)
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
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
|
||
|
Proto-kinetic crusher (#16277)
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
{
|
||
|
|||
}
|