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
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; }
|
|
} |