Pokemon-Terminal/adapter/implementations/NullAdapter.py

11 lines
257 B
Python

from adapter.base import TerminalAdapterInterface
class NullAdapter(TerminalAdapterInterface):
err = "This terminal emulator is not supported."
def clear(self):
print(self.err)
def set_pokemon(self, pokemon):
print(self.err)