blob: 9b0cc2cc475b12f33c9f6cf61fc38967226085c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
""" screens.initials - screen where input initials when one makes
to hiscores """
from sliceitoff.text import TextPage
def initials_screen(name):
""" initials_screen - screen where name is updating as user imputs """
return TextPage(
f" New High Score!\n"
f"\n"
f"\n"
f"Initials, please:\n"
f"\n"
f"\n"
f"{name:^17s}",
font = '8x8',
size = (16_000, 16_000),
pos = (24_000, 32_000) )
|