15 lines
283 B
C++
15 lines
283 B
C++
#ifndef ECOSYSTEME_HERBE_HPP
|
|
#define ECOSYSTEME_HERBE_HPP 1
|
|
|
|
#include "organisme.hpp"
|
|
|
|
class Herbe: public Organisme {
|
|
public:
|
|
// ID de l'univers, index dans l'univers
|
|
Herbe(int, int);
|
|
|
|
// Renvoie faux
|
|
bool animal(void) const noexcept;
|
|
};
|
|
|
|
#endif
|