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-04 00:10:51 +02:00

17 lines
292 B
C++

#ifndef _MOUTON_HPP_
#define _MOUTON_HPP_ 1
#include "animal.hpp"
class Mouton: public Animal {
int generationVitesse(void) const noexcept;
public:
Mouton(int);
Mouton(int, int, int);
// Renvoie faux
bool carnivore(void) const noexcept;
};
#endif