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