NHSE/NHSE.Core/Structures/Item/ItemWrapping.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

14 lines
253 B
C#

namespace NHSE.Core
{
/// <summary>
/// Type of wrapping an <see cref="Item"/> has
/// </summary>
public enum ItemWrapping : byte
{
Nothing = 0,
WrappingPaper = 1,
Present = 2,
Delivery = 3
}
}