This repository has been archived on 2022-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
Ecosysteme/includes/herbe.hpp
2022-04-10 16:10:25 +02:00

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