14 lines
221 B
C++
14 lines
221 B
C++
#ifndef _HERBE_HPP_
|
|
#define _HERBE_HPP_ 1
|
|
|
|
#include "organisme.hpp"
|
|
|
|
class Herbe: public Organisme {
|
|
public:
|
|
Herbe(int, int, int);
|
|
|
|
// Renvoie faux
|
|
bool animal(void) const noexcept;
|
|
};
|
|
|
|
#endif
|