22 lines
624 B
C#
22 lines
624 B
C#
namespace Content.Shared.Chemistry.Components;
|
|
|
|
/// <summary>
|
|
/// Represents a container that also contains a solution.
|
|
/// This means that reactive entities react when inserted into the container.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ReactiveContainerComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The container that holds the solution.
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public string Container = default!;
|
|
|
|
/// <summary>
|
|
/// The solution in the container.
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public string Solution = default!;
|
|
}
|