mirror of
https://github.com/kwsch/NHSE.git
synced 2026-09-26 20:07:11 -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.
7 lines
164 B
C#
7 lines
164 B
C#
namespace NHSE.Parsing;
|
|
|
|
public sealed record MSBTGroup
|
|
{
|
|
public required uint NumberOfLabels { get; init; }
|
|
public required uint Offset { get; init; }
|
|
} |