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

15 lines
295 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(const int, const int);
// Renvoie faux
bool animal(void) const noexcept;
};
#endif