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
Executable File

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):
pass