ES-DE/es-core/src/HelpPrompt.h
Leon Styhre a233b96c2a Removed some unnecessary typedefs and replaced the remaining ones with the more modern 'using' keyword.
Also harmonized the names of some user defined types and made some other minor cleanup.
2022-01-11 21:57:00 +01:00

17 lines
358 B
C++

// SPDX-License-Identifier: MIT
//
// EmulationStation Desktop Edition
// HelpPrompt.h
//
// Definition of the pair used by help prompts to display an icon and its mapped function.
//
#ifndef ES_CORE_HELP_PROMPT_H
#define ES_CORE_HELP_PROMPT_H
#include <string>
using HelpPrompt = std::pair<std::string, std::string>;
#endif // ES_CORE_HELP_PROMPT_H