6
2026-01-13 18:31:02 +02:00

14 lines
305 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.ParcelWrap.Components;
/// <summary>
/// This enum is used to change the sprite used by WrappedParcels based on the parcel's size.
/// </summary>
[Serializable, NetSerializable]
public enum WrappedParcelVisuals : byte
{
Size,
Layer,
}