Files
crystall-punk-14/Content.Shared/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs

16 lines
434 B
C#
Raw Permalink Normal View History

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";
}