2023-10-14 09:45:28 -07:00
|
|
|
|
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>
|
2023-12-29 04:47:43 -08:00
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public string Solution = "default";
|
2023-10-14 09:45:28 -07:00
|
|
|
|
}
|