NHSE/NHSE.Core/Structures/Map/Managers/RoomLayerSurface.cs

15 lines
248 B
C#

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