Files
0a603f4b4d2e3974330f0f4cc4c4cd09c8185fac
14 lines
390 B
C#
14 lines
390 B
C#
using Content.Shared.Wieldable;
|
|||
using Robust.Shared.GameStates;
|
|||
|
|||
namespace Content.Shared.Movement.Components;
|
|||
|
|||
/// <summary>
|
|||
/// Indicates that this item requires wielding for the cursor offset effect to be active.
|
|||
/// </summary>
|
|||
[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem))]
|
|||
public sealed partial class CursorOffsetRequiresWieldComponent : Component
|
|||
{
|
|||
|
|||
}
|