2023-10-14 09:45:28 -07:00
|
|
|
|
namespace Content.Shared.Chemistry.Components.SolutionManager;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class ExaminableSolutionComponent : Component
|
|
|
|
|
|
{
|
2023-12-29 04:47:43 -08:00
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public string Solution = "default";
|
2024-03-31 07:59:36 +03:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// If false then the hidden solution is always visible.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField]
|
|
|
|
|
|
public bool HeldOnly;
|
2023-10-14 09:45:28 -07:00
|
|
|
|
}
|