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

25 lines
516 B
C++

#ifndef ECOSYSTEME_LOUP_HPP
#define ECOSYSTEME_LOUP_HPP 1
#include "animal.hpp"
class Loup: public Animal {
const char _m_lettre = 'L'; // caractère représentant le loup
// Définie la vitesse du loup
int generationVitesse(void) const noexcept;
public:
// ID de l'univers
Loup(const int);
// ID de l'univers, index dans l'univers
Loup(const int, const int);
~Loup(void);
// Renvoie vrai
bool carnivore(void) const noexcept;
};
#endif