mirror of
https://github.com/robindhole/fundamentals.git
synced 2025-07-01 15:06:48 +00:00
7 lines
200 B
Python
7 lines
200 B
Python
from Bird import *
|
|
from BirdType import *
|
|
from interfaces.FlyingBehaviourInterface import *
|
|
|
|
class FlappingBehaviour(FlyingBehaviourInterface):
|
|
def makeFly(self) -> None:
|
|
print("Flapping") |