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 184706bef8
Modifications
- Renommage de certaines variables
- Meilleur implantation de l'index aléatoire
- Variable pour la lettre (table de correspondance)
2022-04-06 00:44:43 +02:00

20 lines
372 B
C++

#ifndef ECOSYSTEME_SEL_HPP
#define ECOSYSTEME_SEL_HPP 1
#include "organisme.hpp"
class Sel: public Organisme {
const char _m_lettre = '-';
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