Research portable Memory game | Исследовать портируемую игру Память
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

18 satır
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