2021-09-06 15:49:44 +02:00
|
|
|
|
using System.Collections.Generic;
|
2021-10-29 13:40:15 +01:00
|
|
|
|
using Content.Server.Chemistry.EntitySystems;
|
|
|
|
|
|
using Content.Shared.Chemistry.Components;
|
2021-09-06 15:49:44 +02:00
|
|
|
|
using Robust.Shared.Analyzers;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
|
2021-10-29 13:40:15 +01:00
|
|
|
|
namespace Content.Server.Chemistry.Components.SolutionManager
|
2021-09-06 15:49:44 +02:00
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
[Friend(typeof(SolutionContainerSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class SolutionContainerManagerComponent : Component
|
2021-09-06 15:49:44 +02:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
[DataField("solutions")]
|
|
|
|
|
|
public readonly Dictionary<string, Solution> Solutions = new();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|