Skip to content

Instantly share code, notes, and snippets.

@congjf
Last active June 15, 2016 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save congjf/4860a0bed9c05f80d9ff to your computer and use it in GitHub Desktop.
Save congjf/4860a0bed9c05f80d9ff to your computer and use it in GitHub Desktop.
kivy example
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