interrupt on screen change

This commit is contained in:
chrys 2016-09-30 23:24:04 +02:00
parent 2a373306c5
commit 6b5f0f49f2

View File

@ -0,0 +1,24 @@
#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
class command():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
def shutdown(self):
pass
def getDescription(self):
return ''
def run(self):
self.env['runtime']['outputManager'].interruptOutput()
def setCallback(self, callback):
pass