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