mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-24 09:08:04 +03:00
13 lines
278 B
C#
13 lines
278 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Nyanotrasen.Kitchen.Components
|
|
{
|
|
public abstract partial class SharedDeepFryerComponent : Component { }
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum DeepFryerVisuals : byte
|
|
{
|
|
Bubbling,
|
|
}
|
|
}
|