#ifndef __INPUT_H__ #define __INPUT_H__ #include #include "constants.h" class input { public: virtual ~input() = 0; virtual game_command get_command() = 0; }; game_command get_direction(std::string &str); #endif