mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-29 04:54:34 -05:00
rewritten core side to include tons more metadata/structure need to rewrite renderer to output full map image rather than skipping sea
16 lines
657 B
C#
16 lines
657 B
C#
namespace NHSE.Core;
|
|
|
|
public sealed class MapTileManager
|
|
{
|
|
public required LayerPositionConfig ConfigTerrain { get; init; }
|
|
public required LayerPositionConfig ConfigItems { get; init; }
|
|
public required LayerPositionConfig ConfigBuildings { get; init; }
|
|
|
|
public required ILayerFieldItemSet FieldItems { get; init; }
|
|
public required ILayerFieldItemFlag LayerItemFlag0 { get; init; }
|
|
public required ILayerFieldItemFlag LayerItemFlag1 { get; init; }
|
|
public required ILayerBuilding LayerBuildings { get; init; }
|
|
|
|
public required MapStatePlaza Plaza { get; init; }
|
|
public required LayerTerrain LayerTerrain { get; set; }
|
|
} |