mirror of
https://github.com/robindhole/fundamentals.git
synced 2025-07-01 15:06:48 +00:00
6 lines
132 B
Python
6 lines
132 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class FlyingBehaviourInterface(ABC):
|
|
@abstractmethod
|
|
def makeFly() -> None:
|
|
... |