mirror of
https://github.com/Justuser3310/ss14_chemistry_site.git
synced 2025-02-08 09:07:38 +00:00
8 lines
183 B
Python
8 lines
183 B
Python
|
class precalc__:
|
||
|
def __init__(self, els):
|
||
|
self.recipe = els[0]
|
||
|
self.vol_in = els[1]
|
||
|
self.vol_out = els[2]
|
||
|
def get_all(self):
|
||
|
return [self.recipe, self.vol_in, self.vol_out]
|