#ifndef WOLFH #define WOLFH #include "game.h" class wolf { const game *const g; unsigned x, y; static const char c = 'W'; wolf(const wolf& another); //deliberately undefined wolf& operator=(const wolf& another); //deliberately undefined public: wolf(const game *initial_g, unsigned initial_x, unsigned initial_y); ~wolf(); void move(); }; #endif