ExaminableSolutionComponent.cs 391 B

1234567891011121314
  1. namespace Content.Shared.Chemistry.Components.SolutionManager;
  2. [RegisterComponent]
  3. public sealed partial class ExaminableSolutionComponent : Component
  4. {
  5. [DataField, ViewVariables(VVAccess.ReadWrite)]
  6. public string Solution = "default";
  7. /// <summary>
  8. /// If false then the hidden solution is always visible.
  9. /// </summary>
  10. [DataField]
  11. public bool HeldOnly;
  12. }