12 lines
206 B
C#
12 lines
206 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Fluids
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum PuddleVisuals : byte
|
|
{
|
|
CurrentVolume,
|
|
SolutionColor,
|
|
}
|
|
}
|