fenrir/src/fenrir-package/core/commands.py
2016-08-24 16:10:11 +02:00

28 lines
404 B
Python

#!/bin/python
import time
# used as shared memory between commands
# use this in your own commands
commandBuffer = {
'clipboard':[],
'currClipboard': 0,
'Marks':{'1':None, '2':None, '3':None}
}
# used by the commandManager
commandInfo = {
'currCommand': '',
'lastCommandTime': time.time()
}
# used by the commandManager
commands = {
'onInput':{
},
'onScreenChanged':{
},
'commands':{
}
}