Delta-v/Content.Shared/GameObjects/Components/Chemistry/FoamVisuals.cs

14 lines
244 B
C#

#nullable enable
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components.Chemistry
{
[Serializable, NetSerializable]
public enum FoamVisuals : byte
{
State,
Color
}
}