mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-27 17:16:59 -05:00
tried to split off some grid stuff because rooms don't need to know about acres; whatever
25 lines
545 B
C#
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,
|
|
}
|
|
} |