NHSE/NHSE.Core/Structures/Item/ItemWrappingPaper.cs
2026-01-13 16:02:58 -06:00

24 lines
455 B
C#

namespace NHSE.Core;
/// <summary>
/// Color of wrapping paper when an <see cref="Item"/> has <see cref="ItemWrapping.WrappingPaper"/>.
/// </summary>
public enum ItemWrappingPaper : byte
{
Yellow = 00,
Pink = 01,
Orange = 02,
LightGreen = 03,
Green = 04,
Mint = 05,
LightBlue = 06,
Purple = 07,
Navy = 08,
Blue = 09,
White = 10,
Red = 11,
Gold = 12,
Brown = 13,
Gray = 14,
Black = 15,
}