This commit is contained in:
chrys
2016-09-12 21:58:11 +02:00
3 changed files with 24 additions and 2 deletions

View File

@ -0,0 +1,13 @@
#!/bin/python
class command():
def __init__(self):
pass
def run(self, environment):
environment['screenData']['newCursorReview'] = { 'x': 0, 'y':environment['screenData']['lines']}
environment['runtime']['outputManager'].presentText(environment, "Bottom", interrupt=True)
return environment
def setCallback(self, callback):
pass
def shutdown(self):
pass