mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-12 03:45:35 -05:00
15 lines
248 B
C#
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,
|
|
}
|
|
}
|