18 lines
195 B
Python
18 lines
195 B
Python
#!/bin/python
|
|
import time
|
|
|
|
commandInfo = {
|
|
'currCommand': '',
|
|
'commandCueue':[],
|
|
'lastCommandTime': time.time()
|
|
}
|
|
|
|
commands = {
|
|
'onInput':{
|
|
},
|
|
'onScreenChanged':{
|
|
},
|
|
'commands':{
|
|
}
|
|
}
|