mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-08 01:45:06 -05:00
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.
18 lines
372 B
C#
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; }
|
|
} |