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