Files
tbd-station-14/Content.Server/Kitchen/Components/SharpComponent.cs
2022-02-18 15:57:42 -07:00

15 lines
401 B
C#

namespace Content.Server.Kitchen.Components;
/// <summary>
/// Applies to items that are capable of butchering entities, or
/// are otherwise sharp for some purpose.
/// </summary>
[RegisterComponent]
public sealed class SharpComponent : Component
{
public HashSet<EntityUid> Butchering = new();
[DataField("butcherDelayModifier")]
public float ButcherDelayModifier = 1.0f;
}