NHSE/NHSE.Core/Structures/Map/Managers/RoomLayerSurface.cs
Kurt 50ce05af6f stash
rewritten core side to include tons more metadata/structure
need to rewrite renderer to output full map image rather than skipping sea
2026-01-19 01:20:43 -06:00

13 lines
208 B
C#

namespace NHSE.Core;
public enum RoomLayerSurface : byte
{
Floor = 0,
FloorSupported = 1,
WallNorth = 2,
WallWest = 3,
WallSouth = 4,
WallEast = 5,
Rugs = 6,
Ceiling = 7,
}