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

class Welcome():
    def __init__(self):
        self.sprites = TextPage(
                "  Slice it off!\n"
                "\n"
                "* Do not hit the balls\n"
                "* Slice off empty areas\n"
                "* Slice off empty areas\n",
                font = 'computer',
                size = (8_000, 16_000),
                grid = (9_000, 16_000) )