Files
tbd-station-14/Content.Server/Chemistry/Components/SolutionContainerComponent.cs
2021-07-16 17:37:09 -07:00

13 lines
386 B
C#

using Content.Shared.Chemistry.Solution.Components;
using Robust.Shared.GameObjects;
namespace Content.Server.Chemistry.Components
{
[RegisterComponent]
[ComponentReference(typeof(SharedSolutionContainerComponent))]
[ComponentReference(typeof(ISolutionInteractionsComponent))]
public class SolutionContainerComponent : SharedSolutionContainerComponent
{
}
}