👨‍💻 dev ChobitsV2 python

development

fukurou

the supreme coder
ADMIN
Python:
''' ChobitsV2 CLASS '''


class ChobitsV2(Thinkable):
    def __init__(self, personality: Personality):
        super().__init__()
        self.AlgDurations: dict[str, int] = personality.getAlgDurations()
        self.fusion: Fusion = Personality.getFusion()

    # Override
    def think(self, ear: str, skin: str, eye: str) -> str:
        pass
 
Top