mirror of https://github.com/kivy/kivy.git
14 lines
239 B
Python
14 lines
239 B
Python
|
import kivy
|
||
|
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__ in ('__android__', '__main__'):
|
||
|
PongApp().run()
|