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

23 lines
507 B
C++

#ifndef ECOSYSTEME_MOUTON_HPP
#define ECOSYSTEME_MOUTON_HPP 1
#include "animal.hpp"
class Mouton: public Animal {
const char _m_lettre = 'M'; // caractère représentant le mouton
// Défini la vitesse du mouton
int generationVitesse(void) const noexcept;
public:
// ID de l'univers
Mouton(const int);
// ID de l'univers, index dans l'univers
Mouton(const int, const int);
// Renvoie faux
bool carnivore(void) const noexcept;
};
#endif