using Robust.Shared.GameStates; namespace Content.Shared.Chemistry.Components; /// /// Denotes the solution that can be easily dumped into (completely removed from the dumping container into this one) /// Think pouring a container fully into this. /// [RegisterComponent, NetworkedComponent] public sealed partial class DumpableSolutionComponent : Component { /// /// Solution name that can be dumped into. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public string Solution = "default"; /// /// Whether the solution can be dumped into infinitely. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public bool Unlimited = false; }