summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/hiscore.py
blob: c6f2a21b2a29bed99aff940f5a4b066bb5574c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from text import TextPage

def hiscore_screen(name):
    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) )