This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
multipong/player.py

11 lines
237 B
Python
Raw Permalink Normal View History

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):
2013-12-14 23:00:50 -05:00
pass