NHSE/NHSE.Core/Structures/Item/ItemWrappingPaper.cs
Kurt 084542d367 xmldoc
tried to split off some grid stuff because rooms don't need to know about acres; whatever
2020-05-23 13:08:14 -07:00

25 lines
545 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,
}
}