mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-27 00:25:38 +00:00
10 lines
182 B
C++
10 lines
182 B
C++
#pragma once
|
|
#ifndef ES_CORE_HELP_PROMPT_H
|
|
#define ES_CORE_HELP_PROMPT_H
|
|
|
|
#include <string>
|
|
|
|
typedef std::pair<std::string, std::string> HelpPrompt;
|
|
|
|
#endif // ES_CORE_HELP_PROMPT_H
|