NHSE/NHSE.Core/Structures/Map/Managers/MapStatePlaza.cs
Kurt b88c518d5c
Update FieldItemEditor for 3.0.0 (#716)
Updates the Field Item Editor to render layers based on the entire map, and the per-patch positioning of each layer.
Import/export will gracefully handle upgrade/downgrade, and viewport import/export will gracefully update tiles rather than a per-acre basis.

Performance has also been slightly improved; no allocation is done anymore when updating the image.
2026-01-25 16:55:38 -06:00

18 lines
372 B
C#

namespace NHSE.Core;
/// <summary>
/// Value storage for plaza position in the map.
/// </summary>
public sealed class MapStatePlaza
{
/// <summary>
/// Plaza Position X coordinate.
/// </summary>
public required uint X { get; set; }
/// <summary>
/// Plaza Position Z coordinate.
/// </summary>
public required uint Z { get; set; }
}