10 lines
133 B
Python
10 lines
133 B
Python
|
#!/bin/python
|
||
|
|
||
|
class inputManager():
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def getCommandQueue(self, runtime):
|
||
|
return[]
|
||
|
|