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