#ifndef ECOSYSTEME_SEL_HPP #define ECOSYSTEME_SEL_HPP 1 #include "organisme.hpp" class Sel: public Organisme { const char _m_lettre = '-'; // caractère représentant le sel public: // ID de l'univers, index dans l'univers Sel(int, int); // ID de l'univers Sel(int); // Renvoie faux bool animal(void) const noexcept; }; #endif