diff --git a/MementoMori.py b/MementoMori.py index b5f3371..dec892f 100644 --- a/MementoMori.py +++ b/MementoMori.py @@ -3,12 +3,17 @@ from kivy.app import App from kivy.uix.widget import Widget +from kivy.uix.label import Label -class PongGame(Widget): - pass +quote = "It is not that we have a short time to live, but that we waste a lot of it. Life is long enough, and a sufficiently generous amount has been given to us for the highest achievements if it were all well invested" -class TestApp(App): +class MementoMori(Widget): + my_label = Label() + my_label.text = quote + my_label.color = '#FFFFFF' + +class MementoApp(App): def build(self): - return PongGame() + return MementoMori() -TestApp().run() \ No newline at end of file +MementoApp().run() \ No newline at end of file diff --git a/kivy/__pycache__/parser.cpython-310.pyc b/kivy/__pycache__/parser.cpython-310.pyc index b788e8b..d2814f5 100644 Binary files a/kivy/__pycache__/parser.cpython-310.pyc and b/kivy/__pycache__/parser.cpython-310.pyc differ diff --git a/kivy/core/text/__pycache__/__init__.cpython-310.pyc b/kivy/core/text/__pycache__/__init__.cpython-310.pyc index 1a5d71b..fc97545 100644 Binary files a/kivy/core/text/__pycache__/__init__.cpython-310.pyc and b/kivy/core/text/__pycache__/__init__.cpython-310.pyc differ diff --git a/kivy/core/text/__pycache__/markup.cpython-310.pyc b/kivy/core/text/__pycache__/markup.cpython-310.pyc index b43f22a..106846e 100644 Binary files a/kivy/core/text/__pycache__/markup.cpython-310.pyc and b/kivy/core/text/__pycache__/markup.cpython-310.pyc differ diff --git a/kivy/core/text/__pycache__/text_pil.cpython-310.pyc b/kivy/core/text/__pycache__/text_pil.cpython-310.pyc index fa3b149..55bccac 100644 Binary files a/kivy/core/text/__pycache__/text_pil.cpython-310.pyc and b/kivy/core/text/__pycache__/text_pil.cpython-310.pyc differ diff --git a/kivy/core/text/__pycache__/text_sdl2.cpython-310.pyc b/kivy/core/text/__pycache__/text_sdl2.cpython-310.pyc index cedc15f..bf08f8e 100644 Binary files a/kivy/core/text/__pycache__/text_sdl2.cpython-310.pyc and b/kivy/core/text/__pycache__/text_sdl2.cpython-310.pyc differ diff --git a/kivy/uix/__pycache__/label.cpython-310.pyc b/kivy/uix/__pycache__/label.cpython-310.pyc index a2c25b8..d46c861 100644 Binary files a/kivy/uix/__pycache__/label.cpython-310.pyc and b/kivy/uix/__pycache__/label.cpython-310.pyc differ