mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2024-11-23 20:33:08 +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()
|