13 lines
196 B
C#
13 lines
196 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Toilet
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum ToiletVisuals
|
|
{
|
|
LidOpen,
|
|
SeatUp
|
|
}
|
|
}
|