21 lines
355 B
C#
21 lines
355 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Chemistry
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum SolutionContainerVisuals : byte
|
|
{
|
|
Color,
|
|
FillFraction,
|
|
BaseOverride,
|
|
SolutionName
|
|
}
|
|
|
|
public enum SolutionContainerLayers : byte
|
|
{
|
|
Fill,
|
|
Base,
|
|
Overlay
|
|
}
|
|
}
|