14 lines
213 B
C++
14 lines
213 B
C++
#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
|