mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-12-02 11:05:37 +00:00
17 lines
340 B
C++
17 lines
340 B
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// ES-DE Frontend
|
|
// 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
|