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
2022-04-06 00:53:48 +02:00

20 lines
407 B
C++

#ifndef ECOSYSTEME_SEL_HPP
#define ECOSYSTEME_SEL_HPP 1
#include "organisme.hpp"
class Sel: public Organisme {
const char _m_lettre = '-'; // caractère représentant le sel
public:
// ID de l'univers, index dans l'univers
Sel(const int, const int);
// ID de l'univers
Sel(const int);
// Renvoie faux
bool animal(void) const noexcept;
};
#endif