Update Labels class

This commit is contained in:
2024-02-14 21:04:05 +01:00
parent 2e9bbc7d19
commit 3589bd49ee
2 changed files with 16 additions and 6 deletions

View File

@@ -17,4 +17,12 @@ class Label:
else:
print("Zeichne Surface!")
pass
pass
class Input_Label(Label):
def __init__(self, is_rect=False, pos=tuple, size=tuple, mainsurface=pygame.Surface) -> None:
super().__init__(is_rect, pos, size, mainsurface)