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/sel.cpp
Mylloon 90c880b399
Modifications
- Renvoie faux à la méthode animal()
- Changement de lettre S -> "-"
2022-04-04 00:09:57 +02:00

9 lines
194 B
C++

#include "../includes/sel.hpp"
Sel::Sel(int universID, int x, int y): Organisme(universID, x, y) {
_correspondance[ID] = '-';
}
bool Sel::animal(void) const noexcept {
return false;
}