#ifndef RABBITH #define RABBITH #include "terminal.h" class rabbit { const terminal *const t; unsigned x, y; char c; public: rabbit(const terminal& init_t, unsigned init_x, unsigned init_y); bool move(); }; #endif