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