diff --git a/src/fenrir-package/commands/commands/top_left.py b/src/fenrir-package/commands/commands/top_left.py new file mode 100644 index 00000000..728cdaa6 --- /dev/null +++ b/src/fenrir-package/commands/commands/top_left.py @@ -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