Research portable Memory game | Исследовать портируемую игру Память
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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