10 lines
171 B
Python
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 |