// immobile.h #ifndef IMMOBILE_H #define IMMOBILE_H #include "wabbit.h" class immobile : virtual public wabbit { public: immobile(const terminal& t, unsigned init_x, unsigned init_y, char c) : wabbit(t, init_x, init_y, c) {} void move() override { // does nothing } }; #endif