mirror of
https://github.com/gryf/fs-uae-wrapper.git
synced 2026-02-01 13:35:48 +01:00
19 lines
325 B
Python
19 lines
325 B
Python
"""
|
|
Display message as simple text on console
|
|
"""
|
|
import sys
|
|
|
|
|
|
class Message:
|
|
"""Just a fake message window for systems without TK"""
|
|
|
|
def __init__(self, msg):
|
|
self.msg = msg
|
|
self._process = None
|
|
|
|
def show(self):
|
|
sys.stdout.write(self.msg + "\n")
|
|
|
|
def close(self):
|
|
return None
|