mirror of
https://gitee.com/yanmu_ym/cpp.git
synced 2026-02-03 09:33:16 +08:00
19 lines
414 B
C++
19 lines
414 B
C++
#ifndef MENUGRAPHICS_H
|
|
#define MENUGRAPHICS_H
|
|
|
|
#include <string>
|
|
|
|
namespace Game {
|
|
namespace Graphics {
|
|
namespace Menu {
|
|
std::string MainMenuTitlePrompt();
|
|
std::string MainMenuOptionsPrompt();
|
|
std::string InputMenuErrorInvalidInputPrompt();
|
|
std::string InputMenuPrompt();
|
|
std::string MainMenuGraphicsOverlay(bool input_error_choice_invalid);
|
|
} // namespace Menu
|
|
} // namespace Graphics
|
|
} // namespace Game
|
|
|
|
#endif
|