first fixes

This commit is contained in:
chrys
2016-09-12 22:17:10 +02:00
parent 1ee4cbb159
commit 3ac70c14e5
3 changed files with 19 additions and 14 deletions

View File

@ -3,11 +3,15 @@
class command():
def __init__(self):
pass
def initialize(self, environment):
return environment
def shutdown(self, environment):
return environment
def getDescription(self):
return 'No Description found'
def run(self, environment):
environment['screenData']['newCursorReview'] = { 'x': 0, 'y':environment['screenData']['lines']}
environment['runtime']['outputManager'].presentText(environment, "Bottom", interrupt=True)
return environment
environment['runtime']['outputManager'].presentText(environment, "Bottom", interrupt=True)
return environment
def setCallback(self, callback):
pass
def shutdown(self):
pass