mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2025-01-10 03:18:43 +00:00
11 lines
257 B
Python
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)
|