Files
wwdpublic/Content.Shared/Burial/Components/ShovelComponent.cs
themias a83c773c3c Grave digging and decomposition (#23646)
* Grave digging and decomposition

* fix

* update based on review comments

* code review

* remove unused field

(cherry picked from commit fd7ff690b1ad7b1cf6cd62deba3076684e3e9282)
2024-01-26 22:50:50 +01:00

14 lines
365 B
C#

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