NHSE/NHSE.Core/Structures/Item/ItemWrapping.cs
Kurt 18ed4c3396 Add Festive wrapping handling
Closes #474

New Horizons loves to reuse and reinterpret data based on values, hence the GUI toggling done for Uses/Variations/Genes... we have to do something similar here. Feels best to be done behind the scenes via code instead.
2021-04-05 17:32:35 -07:00

17 lines
372 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,
// These values are handled with special logic. Only 2 bits are allocated to be stored.
Festive = 4,
}
}