Mylloon
184706bef8
- Renommage de certaines variables - Meilleur implantation de l'index aléatoire - Variable pour la lettre (table de correspondance)
20 lines
382 B
C++
20 lines
382 B
C++
#ifndef ECOSYSTEME_HERBE_HPP
|
|
#define ECOSYSTEME_HERBE_HPP 1
|
|
|
|
#include "organisme.hpp"
|
|
|
|
class Herbe: public Organisme {
|
|
const char _m_lettre = ' ';
|
|
|
|
public:
|
|
// ID de l'univers, index dans l'univers
|
|
Herbe(const int, const int);
|
|
|
|
// ID de l'univers
|
|
Herbe(const int);
|
|
|
|
// Renvoie faux
|
|
bool animal(void) const noexcept;
|
|
};
|
|
|
|
#endif
|