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

16 lines
265 B
C++
Raw Normal View History

#ifndef _HERBE_HPP_
#define _HERBE_HPP_ 1
#include "organisme.hpp"
class Herbe: public Organisme {
public:
// ID de l'univers, index dans l'univers
Herbe(int, int);
2022-04-04 00:09:28 +02:00
// Renvoie faux
bool animal(void) const noexcept;
};
#endif