// herbivore.h #ifndef HERBIVORE_H #define HERBIVORE_H #include "wabbit.h" class herbivore : virtual public wabbit { public: herbivore(const terminal& t, unsigned init_x, unsigned init_y, char c) : wabbit(t, init_x, init_y, c) {} }; #endif