blob: c73f0bf4034ad151e5ae76e3c46064bbcdb5eb0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
""" screens.hiscores - Defines how to display hiscore text on the screen """
from text import TextPage
def hiscores_screen(score_text):
""" hiscores_screen - only ajustments to hiscore text """
return TextPage(
score_text,
font = 'lcd',
size = (12_000, 24_000),
grid = (12_000, 20_000),
pos = (12_000, 0_000) )
|