You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class GirlsMixin:
|
|
def hooray(self):
|
|
print("Hoooray")
|
|
|
|
|
|
class CatMixin:
|
|
def feed(self, hp):
|
|
print("Meow")
|
|
|
|
|
|
class CatGirls(GirlsMixin, CatMixin):
|
|
def main(self):
|
|
super().feed(50)
|
|
super().hooray()
|
|
|