Files
tbd-station-14/Content.Server/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs
2022-02-16 18:23:23 +11:00

21 lines
659 B
C#

using System.Collections.Generic;
using Content.Server.Chemistry.EntitySystems;
using Content.Shared.Chemistry.Components;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.GameStates;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.Chemistry.Components.SolutionManager
{
[RegisterComponent]
[Friend(typeof(SolutionContainerSystem))]
public sealed class SolutionContainerManagerComponent : Component
{
[ViewVariables]
[DataField("solutions")]
public readonly Dictionary<string, Solution> Solutions = new();
}
}