16 lines
434 B
C#
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";
|
|
}
|