23 lines
352 B
Python
23 lines
352 B
Python
from controls.controlsbase import ControlsBase
|
|
|
|
class JoystickControls(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
|
|
|
|
def rumble(self):
|
|
pass |