| 123456789101112131415161718192021 |
- 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!;
- }
|