* Enable nullability in Content.Client * Remove #nullable enable * Merge fixes * Remove Debug.Assert * Merge fixes * Fix build * Fix build
13 lines
334 B
C#
13 lines
334 B
C#
using Content.Shared.GameObjects.Components.Chemistry;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.GameObjects.Components.Chemistry
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedSolutionContainerComponent))]
|
|
public class SolutionContainerComponent : SharedSolutionContainerComponent
|
|
{
|
|
|
|
}
|
|
}
|