Files
tbd-station-14/Content.Server/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs
Ygg01 b2aca94586 Refactor Solution from Shared -> Server (#5078)
* Move entity solution entity systems to shared

* Move SolutionComponents to Server

* Fix namespaces

* Remove Networked Component.

* Fixes

* Add components to ignore list
2021-10-29 23:40:15 +11:00

23 lines
720 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 class SolutionContainerManagerComponent : Component
{
public override string Name => "SolutionContainerManager";
[ViewVariables]
[DataField("solutions")]
public readonly Dictionary<string, Solution> Solutions = new();
}
}