1
0

InjectableSolutionComponent.cs 434 B

123456789101112131415
  1. namespace Content.Shared.Chemistry.Components.SolutionManager;
  2. /// <summary>
  3. /// Denotes a solution which can be added with syringes.
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class InjectableSolutionComponent : Component
  7. {
  8. /// <summary>
  9. /// Solution name which can be added with syringes.
  10. /// </summary>
  11. [DataField, ViewVariables(VVAccess.ReadWrite)]
  12. public string Solution = "default";
  13. }