6
2026-01-24 12:49:55 +03:00

16 lines
434 B
C#

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