Added command to move to top left.

This commit is contained in:
Storm Dragon 2016-08-29 10:12:50 -04:00
parent 309e122b67
commit d4e59eafba

View File

@ -0,0 +1,17 @@
#!/bin/python
from utils import char_utils
class command():
def __init__(self):
pass
def run(self, environment):
environment['screenData']['newCursorReview'] = 'x:0,y:0'
environment['screenData']['newCursorReview']['x'], environment['screenData']['newCursorReview']['y'], currChar = \
environment['runtime']['outputManager'].presentText(environment, "Top Left", interrupt=True)
return environment
def setCallback(self, callback):
pass
def shutdown(self):
pass