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

def welcome_screen():
    return TextPage(
            "     Slice it off!\n"
            " \n"
            " * Do not hit the balls\n"
            " * Make area 10% or smaller\n"
            " * Do not separate the balls\n"
            " * Be fast!!\n",
            font = 'computer',
            size = (8_000, 16_000),
            grid = (9_000, 16_000) )