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/loup.hpp

19 lines
303 B
C++
Raw Normal View History

#ifndef _LOUP_HPP_
#define _LOUP_HPP_ 1
#include "animal.hpp"
class Loup: public Animal {
2022-04-04 00:10:51 +02:00
int generationVitesse(void) const noexcept;
public:
2022-04-04 00:10:51 +02:00
Loup(int);
Loup(int, int, int);
~Loup(void);
2022-04-04 00:10:51 +02:00
// Renvoie vrai
bool carnivore(void) const noexcept;
};
#endif