Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
323B

  1. #include <map>
  2. #include <string>
  3. #include <vector>
  4. #ifndef cli_Context_HEADER
  5. #define cli_Context_HEADER
  6. struct cli_Context {
  7. std::string input = "";
  8. std::string outputGreeting = "";
  9. std::string outputHelp = "";
  10. std::string recentField = "none";
  11. };
  12. cli_Context cli_createContext();
  13. #endif // cli_Context_HEADER