mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2024-12-12 05:22:32 +00:00
15 lines
352 B
Python
15 lines
352 B
Python
from pokemonterminal.adapter.base import TerminalAdapterInterface
|
|
|
|
|
|
class NullAdapter(TerminalAdapterInterface):
|
|
err = "This terminal emulator is not supported."
|
|
|
|
@staticmethod
|
|
def is_available():
|
|
return True
|
|
|
|
def set_image_file_path(self, image_file_path):
|
|
print(self.err)
|
|
|
|
def clear(self):
|
|
print(self.err)
|