There was an error while loading. Please reload this page.
2 parents 998a0b5 + 8d91614 commit 6b965d0Copy full SHA for 6b965d0
3 files changed
excellent-exorcists/.gitignore
@@ -4,7 +4,7 @@
4
__pycache__/
5
*.py[cod]
6
*$py.class
7
-
+src/.kivy/
8
# C extensions
9
*.so
10
excellent-exorcists/src/game.kv
@@ -0,0 +1,15 @@
1
+
2
+ScreenManager:
3
+ id: game_screens
+ Screen:
+ name: 'intro'
+ BoxLayout:
+ Label:
+ text: 'Introduction Layout'
11
12
+ name: 'game'
13
+ FloatLayout:
14
15
+ text: 'Game Layout'
excellent-exorcists/src/main.py
@@ -0,0 +1,10 @@
+from kivy.app import App
+class GameApp(App):
+ def build(self):
+ root = self.root
+if __name__ == '__main__':
+ GameApp().run()
0 commit comments