added a module for displaying athmos

This commit is contained in:
SallarShayegan
2025-04-02 21:27:14 +02:00
parent ba5f1a6ace
commit bda08dab84
2 changed files with 17 additions and 0 deletions

12
athmos.py Executable file
View File

@ -0,0 +1,12 @@
from .fonts import *
from .colors import *
class Athmos:
def __init__(self, screen):
self.screen = screen
def update(self):
name = font_helvetica16.render("kir", False, color_primary_light)
self.screen.blit(name, ((self.screen.get_width() - name.get_width())/2,
20))