18 lines
271 B
C#
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
|
|
}
|
|
|
|
|
|
}
|