corrections corners bugs, clean tree structure and start entrance

This commit is contained in:
AKreuzer
2024-06-11 03:06:06 +02:00
parent 536c71d372
commit de3950d376
21 changed files with 153 additions and 86 deletions

View File

@@ -2,9 +2,9 @@ from enum import Enum
class DIRECTION(Enum):
NORTH = 0
WEST = 1
EAST = 1
SOUTH = 2
EAST = 3
WEST = 3
class COLLUMN_STYLE(Enum):
NONE = 0
@@ -20,4 +20,9 @@ class WINDOW_BORDER_RADIUS(Enum):
class BALCONY_BORDER_RADIUS(Enum):
NONE = 0
MEDIUM = 1
FULL = 2
FULL = 2
class INTER_FLOOR_BORDER(Enum):
NONE = 0
SLAB = 1
STAIRS = 2