12 lines
210 B
C#
12 lines
210 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.Components.Recycling
|
|||
|
|
{
|
|||
|
|
[NetSerializable, Serializable]
|
|||
|
|
public enum RecyclerVisuals
|
|||
|
|
{
|
|||
|
|
Bloody
|
|||
|
|
}
|
|||
|
|
}
|