Files
tbd-station-14/Content.Shared/Kitchen/SharedMicrowave.cs

19 lines
292 B
C#

using Robust.Shared.Serialization;
using System;
using System.Collections.Generic;
using System.Text;
namespace Content.Shared.Kitchen
{
[Serializable, NetSerializable]
public enum MicrowaveVisualState
{
Off,
PoweredIdle,
Cooking
}
}