2021-10-29 13:40:15 +01:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Chemistry
|
|
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum SolutionContainerVisuals : byte
|
|
|
|
|
{
|
2023-01-14 13:21:15 +13:00
|
|
|
Color,
|
|
|
|
|
FillFraction,
|
2023-02-18 19:00:31 -06:00
|
|
|
BaseOverride,
|
2023-07-01 00:10:47 +02:00
|
|
|
SolutionName
|
2021-10-29 13:40:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum SolutionContainerLayers : byte
|
|
|
|
|
{
|
|
|
|
|
Fill,
|
2023-02-18 19:00:31 -06:00
|
|
|
Base,
|
|
|
|
|
Overlay
|
2021-10-29 13:40:15 +01:00
|
|
|
}
|
|
|
|
|
}
|