Update main.py

Make main.py in step 4 consistent with main.py in the other steps
This commit is contained in:
rogererens 2013-04-21 02:49:59 +03:00
parent a12bb7f0fa
commit b0d5b75b0d
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ from random import randint
class PongBall(Widget):
velocity_x = NumericProperty(1)
velocity_x = NumericProperty(0)
velocity_y = NumericProperty(0)
velocity = ReferenceListProperty(velocity_x, velocity_y)