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
232 B
C++

#ifndef _HERBE_HPP_
#define _HERBE_HPP_ 1
#include "organisme.hpp"
class Herbe: public Organisme {
public:
Herbe(void);
// Représenté par "0" dans l'univers
short id(void) const noexcept;
};
#endif