Pokemon-Terminal/adapter/base.py

6 lines
170 B
Python

class TerminalAdapterInterface(object):
def set_pokemon(self, pokemon):
raise NotImplementedError()
def clear(self):
raise NotImplementedError()