#ifndef ECOSYSTEME_SEL_HPP #define ECOSYSTEME_SEL_HPP 1 #include "organisme.hpp" class Sel: public Organisme { public: // ID de l'univers, index dans l'univers Sel(const int, const int); // Renvoie faux bool animal(void) const noexcept; }; #endif