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