mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-28 01:26:59 -05:00
31 lines
543 B
C#
31 lines
543 B
C#
namespace NHSE.Core
|
|
{
|
|
public enum ItemWrapping : byte
|
|
{
|
|
Nothing = 0,
|
|
WrappingPaper = 1,
|
|
Present = 2,
|
|
Delivery = 3
|
|
}
|
|
|
|
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,
|
|
}
|
|
}
|