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