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/src/herbe.cpp

10 lines
202 B
C++
Raw Normal View History

#include "../includes/herbe.hpp"
2022-04-04 00:09:28 +02:00
Herbe::Herbe(int universID, int x, int y): Organisme(universID, x, y) {
_correspondance[ID] = ' ';
}
2022-04-04 00:09:28 +02:00
bool Herbe::animal(void) const noexcept {
return false;
}