about summary refs log blame commit diff
path: root/engine.py
blob: 26a5bab47d42ee606aecd2ae42783019d46bd07d (plain) (tree)
1
2
3
4
5
6
7






                                                                 
import fuel

class Engine():
    def __init__(self, name: str, thrust: int, flow_rate: float):
        self.name = name
        self.thrust = thrust
        self.flow_rate = flow_rate