20 lines
287 B
Python
20 lines
287 B
Python
#!/bin/python
|
|
#from commands import curr_line
|
|
#from commands import shut_up
|
|
|
|
commandInfo = {
|
|
'currCommand': '',
|
|
'commandCueue':[]
|
|
}
|
|
|
|
commands = {
|
|
'onnInput':{
|
|
},
|
|
'onScreenChanged':{
|
|
},
|
|
'commands':{
|
|
# 'curr_line': curr_line.command(),
|
|
# 'shut_up': shut_up.command()
|
|
}
|
|
}
|