9 lines
250 B
C#
9 lines
250 B
C#
namespace Content.Shared.Chemistry.Components.SolutionManager;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class ExaminableSolutionComponent : Component
|
|
{
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public string Solution = "default";
|
|
}
|