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