fundamentals/python_code/oop/SOLID/bird/FlappingBehaviour.py
Abhishek Singh Thakur 59d2d5acfb
Adds python code (#7)
2022-10-13 19:54:41 +05:30

7 lines
200 B
Python

from Bird import *
from BirdType import *
from interfaces.FlyingBehaviourInterface import *
class FlappingBehaviour(FlyingBehaviourInterface):
def makeFly(self) -> None:
print("Flapping")