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