13 lines
199 B
C#
13 lines
199 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Foam
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum FoamVisuals : byte
|
|
{
|
|
State,
|
|
Color
|
|
}
|
|
}
|