DrawableSolutionComponent.cs 436 B

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