NHSE/NHSE.Core/Structures/Map/Managers/RoomLayerSurface.cs
Kurt b88c518d5c
Update FieldItemEditor for 3.0.0 (#716)
Updates the Field Item Editor to render layers based on the entire map, and the per-patch positioning of each layer.
Import/export will gracefully handle upgrade/downgrade, and viewport import/export will gracefully update tiles rather than a per-acre basis.

Performance has also been slightly improved; no allocation is done anymore when updating the image.
2026-01-25 16:55:38 -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,
}