Files
tbd-station-14/Content.Server/Fluids/Components/FluidSpreaderComponent.cs
2022-02-15 13:22:26 +11:00

15 lines
361 B
C#

using Content.Server.Fluids.EntitySystems;
using Content.Shared.Chemistry.Components;
namespace Content.Server.Fluids.Components;
[RegisterComponent]
[Friend(typeof(FluidSpreaderSystem))]
public sealed class FluidSpreaderComponent : Component
{
[ViewVariables]
public Solution OverflownSolution = default!;
public bool Enabled { get; set; }
}