using Robust.Shared.GameStates; namespace Content.Shared.Mining.Components; /// /// This is a component that, when held in the inventory or pocket of a player, gives the the MiningOverlay. /// [RegisterComponent, NetworkedComponent, Access(typeof(MiningScannerSystem))] public sealed partial class MiningScannerComponent : Component { [DataField] public float Range = 5; }