DrainableSolutionComponent.cs 537 B

1234567891011121314151617
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Chemistry.Components;
  3. /// <summary>
  4. /// Denotes the solution that can be easily removed through any reagent container.
  5. /// Think pouring this or draining from a water tank.
  6. /// </summary>
  7. [RegisterComponent, NetworkedComponent]
  8. public sealed partial class DrainableSolutionComponent : Component
  9. {
  10. /// <summary>
  11. /// Solution name that can be drained.
  12. /// </summary>
  13. [DataField, ViewVariables(VVAccess.ReadWrite)]
  14. public string Solution = "default";
  15. }