Skip to content
This repository was archived by the owner on Feb 22, 2020. It is now read-only.

Commit 6b965d0

Browse files
Merge pull request #1 from LukasZahradnik/Inventor_branch
2 parents 998a0b5 + 8d91614 commit 6b965d0

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

excellent-exorcists/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__pycache__/
55
*.py[cod]
66
*$py.class
7-
7+
src/.kivy/
88
# C extensions
99
*.so
1010

excellent-exorcists/src/game.kv

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
ScreenManager:
3+
id: game_screens
4+
5+
Screen:
6+
name: 'intro'
7+
BoxLayout:
8+
Label:
9+
text: 'Introduction Layout'
10+
11+
Screen:
12+
name: 'game'
13+
FloatLayout:
14+
Label:
15+
text: 'Game Layout'

excellent-exorcists/src/main.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from kivy.app import App
2+
3+
4+
class GameApp(App):
5+
6+
def build(self):
7+
root = self.root
8+
9+
if __name__ == '__main__':
10+
GameApp().run()

0 commit comments

Comments
 (0)