Last active
June 15, 2016 01:11
-
-
Save congjf/4860a0bed9c05f80d9ff to your computer and use it in GitHub Desktop.
kivy example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from kivy.app import App | |
from kivy.uix.widget import Widget | |
class PongGame(Widget): | |
pass | |
class PongApp(App): | |
def build(self): | |
return PongGame() | |
if __name__ == '__main__': | |
PongApp().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment