23 lines
351 B
Python
23 lines
351 B
Python
"""
|
|
Class for grabbing key presses
|
|
"""
|
|
from controls.controlsbase import ControlsBase
|
|
|
|
class KeyboardControls(ControlsBase):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def left(self):
|
|
pass
|
|
|
|
def right(self):
|
|
pass
|
|
|
|
def up(self):
|
|
pass
|
|
|
|
def down(self):
|
|
pass
|
|
|
|
def pause(self):
|
|
pass |