kivy/examples/tutorials/pong/steps/step2/main.py

15 lines
212 B
Python
Raw Normal View History

2012-01-11 03:53:01 +00:00
from kivy.app import App
from kivy.uix.widget import Widget
2012-12-08 17:14:16 +00:00
2012-01-11 03:53:01 +00:00
class PongGame(Widget):
pass
2012-12-08 17:14:16 +00:00
2012-01-11 03:53:01 +00:00
class PongApp(App):
def build(self):
return PongGame()
if __name__ == '__main__':
2012-01-11 03:53:01 +00:00
PongApp().run()