using Robust.Shared.GameStates; namespace Content.Shared.Burial.Components; [RegisterComponent, NetworkedComponent] public sealed partial class ShovelComponent : Component { /// /// The speed modifier for how fast this shovel will dig. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public float SpeedModifier = 1f; }