mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 15:38:52 +03:00
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
|
|
}
|
|
}
|