mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
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";
|
|
}
|