Initial work, pong paddles move, lots of the groundwork for multiplayer or alternate displays is already done

This commit is contained in:
2013-12-14 22:54:21 -05:00
commit 26eb57c61d
9 changed files with 445 additions and 0 deletions

10
player.py Executable file
View File

@@ -0,0 +1,10 @@
from common import *
import event
import actor
class Player(actor.Paddle, event.EventHandler):
def __init__(self, *args, **kwargs):
actor.Paddle.__init__(self, *args, **kwargs)
def cleanup(self):
raise Exception("lol implement me")