5 lines
120 B
Python
5 lines
120 B
Python
|
class Robot:
|
||
|
update_interval = 0.5
|
||
|
|
||
|
def update(self, image, emotions):
|
||
|
raise NotImplementedError()
|