15 lines
225 B
C++
15 lines
225 B
C++
|
#ifndef _SEL_HPP_
|
||
|
#define _SEL_HPP_ 1
|
||
|
|
||
|
#include "organisme.hpp"
|
||
|
|
||
|
class Sel: public Organisme {
|
||
|
public:
|
||
|
Sel(void);
|
||
|
|
||
|
// Représenté par "-1" dans l'univers
|
||
|
short id(void) const noexcept;
|
||
|
};
|
||
|
|
||
|
#endif
|