2022-02-15 03:22:26 +01:00
|
|
|
|
using Content.Server.Fluids.EntitySystems;
|
|
|
|
|
|
using Content.Shared.Chemistry.Components;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Fluids.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
|
[Access(typeof(FluidSpreaderSystem))]
|
2022-02-15 03:22:26 +01:00
|
|
|
|
public sealed class FluidSpreaderComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public Solution OverflownSolution = default!;
|
|
|
|
|
|
|
|
|
|
|
|
public bool Enabled { get; set; }
|
|
|
|
|
|
}
|