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
Mylloon 90c880b399
Modifications
- Renvoie faux à la méthode animal()
- Changement de lettre S -> "-"
2022-04-04 00:09:57 +02:00

14 lines
213 B
C++

#ifndef _SEL_HPP_
#define _SEL_HPP_ 1
#include "organisme.hpp"
class Sel: public Organisme {
public:
Sel(int, int, int);
// Renvoie faux
bool animal(void) const noexcept;
};
#endif