mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-06 17:54:26 -05:00
rewritten core side to include tons more metadata/structure need to rewrite renderer to output full map image rather than skipping sea
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; }
|
|
} |