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/includes/sel.hpp

15 lines
287 B
C++

#ifndef ECOSYSTEME_SEL_HPP
#define ECOSYSTEME_SEL_HPP 1
#include "organisme.hpp"
class Sel: public Organisme {
public:
// ID de l'univers, index dans l'univers
Sel(const int, const int);
// Renvoie faux
bool animal(void) const noexcept;
};
#endif