This commit is contained in:
2021-08-31 23:15:01 +02:00
parent 3eea1693c4
commit 47d06204ea
3 changed files with 41 additions and 2 deletions

7
UI/objects/Rect.py Normal file
View File

@@ -0,0 +1,7 @@
from numpy import array as a
import numpy as np
class Rect:
def __init__(self):
pass

17
UI/objects/Screen.py Normal file
View File

@@ -0,0 +1,17 @@
from numpy import array as a
import numpy as np
import pygame
class Screen:
def __init__(self, width: float, height: float, font_size: int, matrix: np.array):
self.width = width
self.height = height
self.size = a([width, height])
self.matrix = matrix
self.s = pygame.Surface([width, height])
self.font_size = font_size
self.center = a([width, height]) / 2