Files
tbd-station-14/Content.Shared/Kitchen/SharedMicrowave.cs
2020-05-01 03:38:48 -05:00

18 lines
271 B
C#

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