using Robust.Shared.GameStates; namespace Content.Shared.Chemistry.Components; [RegisterComponent, NetworkedComponent] public sealed partial class MixableSolutionComponent : Component { /// /// Solution name which can be mixed with methods such as blessing /// [DataField, ViewVariables(VVAccess.ReadWrite)] public string Solution = "default"; }