#ifndef HERBIVORE_H #define HERBIVORE_H #include "wabbit.h" using namespace std; class herbivore: public virtual wabbit { public: herbivore(const terminal& init_t, unsigned init_x, unsigned init_y, char init_c): wabbit {init_t, init_x, init_y, init_c} { } int hungry() const {return 0;} int bitter() const {return 0;} //tasty flesh }; #endif