Files
makefile_cpp/Make/2048/headers/statistics-graphics.hpp
2023-04-13 14:02:08 +08:00

20 lines
481 B
C++

#ifndef STATISTICSGRAPHICS_H
#define STATISTICSGRAPHICS_H
#include <string>
#include <tuple>
namespace Statistics {
namespace Graphics {
std::string AskForPlayerNamePrompt();
std::string MessageScoreSavedPrompt();
using total_stats_display_data_t =
std::tuple<bool, std::string, std::string, std::string, std::string,
std::string>;
std::string TotalStatisticsOverlay(total_stats_display_data_t tsdd);
} // namespace Graphics
} // namespace Statistics
#endif