2020-09-21 17:17:34 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-26 15:17:35 +00:00
|
|
|
//
|
2020-09-21 17:17:34 +00:00
|
|
|
// EmulationStation Desktop Edition
|
2020-06-26 15:17:35 +00:00
|
|
|
// HelpPrompt.h
|
|
|
|
//
|
2021-05-23 18:31:15 +00:00
|
|
|
// Definition of the pair used by help prompts to display an icon and its mapped function.
|
2020-06-26 15:17:35 +00:00
|
|
|
//
|
|
|
|
|
2017-11-01 22:21:10 +00:00
|
|
|
#ifndef ES_CORE_HELP_PROMPT_H
|
|
|
|
#define ES_CORE_HELP_PROMPT_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2022-01-11 20:57:00 +00:00
|
|
|
using HelpPrompt = std::pair<std::string, std::string>;
|
2017-11-01 22:21:10 +00:00
|
|
|
|
|
|
|
#endif // ES_CORE_HELP_PROMPT_H
|