sample comments rewritten

This commit is contained in:
Frank DeMarco 2012-08-02 17:38:18 -04:00
parent d3374b5820
commit e467b65224
1 changed files with 7 additions and 3 deletions

10
README
View File

@ -17,12 +17,11 @@ from random import randint
from pgfw.Game import Game
# inheriting from Game allows you to customize your project
class SampleGame(Game):
square_width = 30
# update runs every frame (a.k.a. the mainloop)
# update is a special method that runs once every frame
def update(self):
sleep(1)
screen = self.get_screen()
@ -34,7 +33,6 @@ class SampleGame(Game):
if __name__ == '__main__':
# the play method begins the project's animation
SampleGame().play()
@ -45,6 +43,12 @@ This software is dedicated to the public domain. See
http://creativecommons.org/publicdomain/zero/1.0/ for details.
Todo
====
- Remove unecessary python libraries from windows build
Contact
=======