9 lines
194 B
C++
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;
|
|
}
|