10 lines
152 B
C++
10 lines
152 B
C++
|
#include "../includes/sel.hpp"
|
||
|
|
||
|
Sel::Sel(void): Organisme() {
|
||
|
_correspondance[id()] = 'S';
|
||
|
}
|
||
|
|
||
|
short Sel::id(void) const noexcept {
|
||
|
return -1;
|
||
|
}
|