mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-24 15:18:33 -05:00
Added fruits + flowers to Player Misc menu (kept field goods property manager in place still). Saving fruits pushes change to flags block for fruits so that multiple edits aren't required when changing/saving it with new UpdateFruitFlags method. Flowers added as enum class like Airport Color, but should be moved out to strings for localization later on.
16 lines
336 B
C#
16 lines
336 B
C#
namespace NHSE.Core;
|
|
|
|
/// <summary>
|
|
/// Determines the island flower types (players island type and sister type).
|
|
/// </summary>
|
|
public enum IslandFlowers : byte
|
|
{
|
|
Windflower = 0,
|
|
Hyacinth = 1,
|
|
Tulip = 2,
|
|
Rose = 3,
|
|
Cosmos = 4,
|
|
Lily = 5,
|
|
Mums = 6,
|
|
Pansy = 7,
|
|
} |