Files
tbd-station-14/Content.Shared/Burial/Components/ShovelComponent.cs
themias fd7ff690b1 Grave digging and decomposition (#23646)
* Grave digging and decomposition

* fix

* update based on review comments

* code review

* remove unused field
2024-01-14 11:47:31 -05: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;
}