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

11
common.py Executable file
View File

@@ -0,0 +1,11 @@
import curses
import Queue
import argparse
import sys
import logging
import traceback
import json
import threading
FRAMERATE=1.0/60.0