mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2025-01-10 03:18:43 +00:00
6 lines
170 B
Python
6 lines
170 B
Python
class TerminalAdapterInterface(object):
|
|
def set_pokemon(self, pokemon):
|
|
raise NotImplementedError()
|
|
|
|
def clear(self):
|
|
raise NotImplementedError()
|