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

14 lines
221 B
C++

#ifndef _HERBE_HPP_
#define _HERBE_HPP_ 1
#include "organisme.hpp"
class Herbe: public Organisme {
public:
Herbe(int, int, int);
// Renvoie faux
bool animal(void) const noexcept;
};
#endif