Files
tbd-station-14/Content.Server/Fluids/Components/SpillableComponent.cs
keronshb 9ebb452a3c DoAfter Refactor (#13225)
Co-authored-by: DrSmugleaf <drsmugleaf@gmail.com>
2023-02-25 01:01:25 +01:00

19 lines
464 B
C#

namespace Content.Server.Fluids.Components;
[RegisterComponent]
public sealed class SpillableComponent : Component
{
[DataField("solution")]
public string SolutionName = "puddle";
/// <summary>
/// Should this item be spilled when worn as clothing?
/// Doesn't count for pockets or hands.
/// </summary>
[DataField("spillWorn")]
public bool SpillWorn = true;
[DataField("spillDelay")]
public float? SpillDelay;
}