blob: 4a63dc29521dfb6a2ab0b1e53735bbeae3f8cc94 (
plain)
1
2
3
4
5
6
7
8
9
|
from text import TextPage
from stats import Stats
def level_screen():
return TextPage(
f"Level {Stats.level}!",
font = '8x8',
size = (24_000, 24_000),
pos = (48_000, 108_000) )
|