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

10 lines
199 B
C++
Raw Normal View History

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