diff options
author | Baitinq <you@example.com> | 2022-02-06 22:52:22 +0000 |
---|---|---|
committer | Baitinq <you@example.com> | 2022-02-06 22:52:22 +0000 |
commit | 521da01f6da6c32ccd834c20b7ea457a619361c8 (patch) | |
tree | 6f95f89ac0369f4c0e85e6b2a9b6f9c0a1f67008 /fuel.py | |
download | OSLS-521da01f6da6c32ccd834c20b7ea457a619361c8.tar.gz OSLS-521da01f6da6c32ccd834c20b7ea457a619361c8.tar.bz2 OSLS-521da01f6da6c32ccd834c20b7ea457a619361c8.zip |
Initial Commit
Diffstat (limited to 'fuel.py')
-rw-r--r-- | fuel.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fuel.py b/fuel.py new file mode 100644 index 0000000..11fc233 --- /dev/null +++ b/fuel.py @@ -0,0 +1,4 @@ +class Fuel(): + def __init__(self, name: str, energy_density: float): + self.name = name + self.energy_density = energy_density \ No newline at end of file |