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

9
harnesses.py Executable file
View File

@@ -0,0 +1,9 @@
from common import *
import actor
import display
def textActor():
ta = actor.Text(text="lolzors")
ta.x = 10
ta.y = 10
display.Display.CurrentDisplay().addActor(ta)