mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-19 15:07:24 -05:00
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.
17 lines
372 B
C#
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,
|
|
}
|
|
}
|