#ifndef GUESSING_GAME_HPP #define GUESSING_GAME_HPP #include "helpers.hpp" #include using std::cout; using std::endl; inline void OutputRandomNumber() { cout << Random(1, 10000) << endl; } #endif // !GUESSING_GAME_HPP