NHSE/NHSE.Core/Structures/Misc/IslandFlowers.cs
Josh (vector_cmdr) c3371475d4
Fruit + Flower Improvement (#704)
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.
2026-01-20 14:45:51 +11:00

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,
}