20 lines
423 B
C++
20 lines
423 B
C++
#ifndef ECOSYSTEME_HERBE_HPP
|
|
#define ECOSYSTEME_HERBE_HPP 1
|
|
|
|
#include "organisme.hpp"
|
|
|
|
class Herbe: public Organisme {
|
|
const char _m_lettre = ' '; // caractère représentant l'herbe
|
|
|
|
public:
|
|
// ID de l'univers, index dans l'univers
|
|
Herbe(int, int);
|
|
|
|
// ID de l'univers
|
|
Herbe(int);
|
|
|
|
// Définit le comportement de l'herbe à chaque tour
|
|
void action(void);
|
|
};
|
|
|
|
#endif
|