summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/welcome.py
diff options
context:
space:
mode:
authorViljami Ilola <+@hix.fi>2024-04-08 02:55:25 +0300
committerViljami Ilola <+@hix.fi>2024-04-08 02:55:25 +0300
commit74a735a7878bc76d01b644505f674cfe7bebd058 (patch)
tree6c7f64b88abffe9cdecb655ed950ac34485bbeaf /src/sliceitoff/screens/welcome.py
parenteeac2c3bd87c542c48c806a98ea8c7c22db6dfc2 (diff)
instructions screens
Diffstat (limited to 'src/sliceitoff/screens/welcome.py')
-rw-r--r--src/sliceitoff/screens/welcome.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/sliceitoff/screens/welcome.py b/src/sliceitoff/screens/welcome.py
deleted file mode 100644
index 7078f1f..0000000
--- a/src/sliceitoff/screens/welcome.py
+++ /dev/null
@@ -1,22 +0,0 @@
-""" screens.welcome - name, objective and scoring """
-from text import TextPage
-
-def welcome_screen():
- """ welcome_screen - could be also considered as instruction screen """
- return TextPage(
- " Slice it off!\n"
- " \n"
- " Your mission:\n"
- " * Slice area to 20%\n"
- " * Slice no-one\n"
- "\n"
- " Gain score by:\n"
- " * Keeping herd together\n"
- " * Not slicing unnecessarily\n"
- " * Making area even smaller\n"
- " * Not losing lives\n"
- " * Being fast\n"
- " * Leveling up\n",
- font = 'computer',
- size = (8_000, 16_000),
- grid = (9_000, 16_000) )