mirror of
https://gitee.com/yanmu_ym/cpp.git
synced 2026-02-08 12:03:15 +08:00
20 lines
481 B
C++
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
|