hotfix number 46 and optimization number 956 on windows

This commit is contained in:
AKreuzer
2024-05-27 22:52:09 +02:00
parent 33b34108e5
commit 1371be4132
7 changed files with 145 additions and 86 deletions

View File

@@ -3,7 +3,7 @@ from buildings.geometry.Point import Point
from buildings.geometry.Rectangle import Rectangle
class Vertice(Rectangle):
def __init__(self, point1 : Point, point2 : Point, facing : DIRECTION):
def __init__(self, point1 : Point, point2 : Point, facing : DIRECTION = None):
Rectangle.__init__(self, point1, point2)
self.facing = facing