19 lines
292 B
C#
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
|
|
}
|
|
|
|
|
|
}
|