blob: 334f515755b894a917e9f5ec3441997683c38914 (
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 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"Please give name:\n"
f"\n"
f"\n"
f"{name:^17s}",
font = '8x8',
size = (16_000, 16_000),
pos = (24_000, 32_000) )
|