human/render/base_render.py

19 lines
254 B
Python
Raw Normal View History

2024-10-12 11:57:24 +00:00
#encoding = utf8
from abc import ABC, abstractmethod
class BaseRender(ABC):
2024-10-21 11:55:04 +00:00
def __init__(self, start):
self._start = start
@abstractmethod
def put(self, frame):
pass
@abstractmethod
def stop(self):
2024-10-12 11:57:24 +00:00
pass