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,
|
2021-10-29 13:40:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum SolutionContainerLayers : byte
|
|
|
|
|
{
|
|
|
|
|
Fill,
|
|
|
|
|
Base
|
|
|
|
|
}
|
|
|
|
|
}
|