Files
GDMC-2024/buildings/elements/Window.py
2024-05-11 11:21:24 +02:00

10 lines
171 B
Python

class Window:
def __init__(self, size : tuple[int,int]):
self.size = size
def open(self):
pass
def close(self):
pass