summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/welcome.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sliceitoff/screens/welcome.py')
-rw-r--r--src/sliceitoff/screens/welcome.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/sliceitoff/screens/welcome.py b/src/sliceitoff/screens/welcome.py
new file mode 100644
index 0000000..ddfd997
--- /dev/null
+++ b/src/sliceitoff/screens/welcome.py
@@ -0,0 +1,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) )
+ \ No newline at end of file