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

18 lines
289 B
C++
Raw Normal View History

#ifndef _LOUP_HPP_
#define _LOUP_HPP_ 1
#include "animal.hpp"
class Loup: public Animal {
public:
Loup(void);
~Loup(void);
bool carnivore(void) const noexcept;
// Représenté par "2" dans l'univers
short id(void) const noexcept;
};
#endif