namespace Content.Shared.Chemistry.Components.SolutionManager; /// /// Denotes a solution which can be added with syringes. /// [RegisterComponent] public sealed partial class InjectableSolutionComponent : Component { /// /// Solution name which can be added with syringes. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public string Solution = "default"; }