mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-18 22:47:24 -05:00
rewritten core side to include tons more metadata/structure need to rewrite renderer to output full map image rather than skipping sea
13 lines
208 B
C#
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,
|
|
} |