Files
SantoscopeUI/athmos.py
2025-04-02 21:27:14 +02:00

12 lines
333 B
Python
Executable File

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))