about summary refs log tree commit diff
path: root/engine.py
diff options
context:
space:
mode:
authorBaitinq <you@example.com>2022-02-06 22:52:22 +0000
committerBaitinq <you@example.com>2022-02-06 22:52:22 +0000
commit521da01f6da6c32ccd834c20b7ea457a619361c8 (patch)
tree6f95f89ac0369f4c0e85e6b2a9b6f9c0a1f67008 /engine.py
downloadOSLS-521da01f6da6c32ccd834c20b7ea457a619361c8.tar.gz
OSLS-521da01f6da6c32ccd834c20b7ea457a619361c8.tar.bz2
OSLS-521da01f6da6c32ccd834c20b7ea457a619361c8.zip
Initial Commit
Diffstat (limited to 'engine.py')
-rw-r--r--engine.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/engine.py b/engine.py
new file mode 100644
index 0000000..26a5bab
--- /dev/null
+++ b/engine.py
@@ -0,0 +1,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
\ No newline at end of file