* removes unused method * Code uncluttering (Also removed the netcode, color code, and visuals, need to rewrite) * SolutionContainerVisualState * Removes caching of SolutionContainer Color * ChemicalsAdded() and ChemicalsRemoved() for updating appearance and handling reaction checks * SolutionContainerComponentState * Netcode * ChemMasterComponent no longer creates a SolutionContainerComponent with new(), uses a Solution instead * Enable nullable in SolutionContainer implementations * Some review fixes * uses IReadOnlyLists in ChemMaster * Comments * review fixes 3 * ReagentUnit documentation * Review fixes * spelling fix * spelling 2 * typo Co-authored-by: py01 <pyronetics01@gmail.com>
14 lines
351 B
C#
14 lines
351 B
C#
#nullable enable
|
|
using Content.Shared.GameObjects.Components.Chemistry;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.GameObjects.Components.Chemistry
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedSolutionContainerComponent))]
|
|
public class SolutionContainerComponent : SharedSolutionContainerComponent
|
|
{
|
|
|
|
}
|
|
}
|