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.

53 lines
2.0KB

  1. #include "memory_Context.h"
  2. #ifndef main_HEADER
  3. #define main_HEADER
  4. memory_Context memory_detectMismatchedItems(memory_Context);
  5. memory_Context memory_detectVictory(memory_Context);
  6. memory_Context memory_generateConstPlayfield(memory_Context);
  7. memory_Context memory_hideMatchingItems(memory_Context);
  8. memory_Context memory_selectItem(memory_Context);
  9. std::string memory_test_detectMismatchedItems();
  10. std::string memory_test_detectMismatchedItems_itemTwice();
  11. std::string memory_test_detectVictory();
  12. std::string memory_test_generateConstPlayfield();
  13. std::string memory_test_hideMatchingItems();
  14. std::string memory_test_selectItem_1x();
  15. std::string memory_test_selectItem_2x();
  16. std::string memory_test_selectItem_3x();
  17. memory_Context cli_exit(memory_Context);
  18. memory_Context cli_goOn(memory_Context);
  19. memory_Context cli_greetUser(memory_Context);
  20. memory_Context cli_promptSecondItemSelection(memory_Context);
  21. memory_Context cli_reportMatchedItems(memory_Context);
  22. memory_Context cli_reportVictory(memory_Context);
  23. memory_Context cli_selectItem(memory_Context);
  24. memory_Context cli_showHelp(memory_Context);
  25. memory_Context cli_reportMismatchedItems(memory_Context);
  26. std::string cli_test_exit_e();
  27. std::string cli_test_exit_exit();
  28. std::string cli_test_exit_victory();
  29. std::string cli_test_exit_q();
  30. std::string cli_test_exit_quit();
  31. std::string cli_test_goOn();
  32. std::string cli_test_greetUser();
  33. std::string cli_test_promptSecondItemSelection();
  34. std::string cli_test_reportMatchedItems();
  35. std::string cli_test_reportMismatchedItems();
  36. std::string cli_test_selectItem();
  37. std::string cli_test_showHelp_h();
  38. std::string cli_test_showHelp_help();
  39. std::string cli_test_reportVictory();
  40. std::string ctx_test_Controller_executeFunctions_set();
  41. std::string ctx_test_Controller_processQueue();
  42. std::string ctx_test_memoryContext_field();
  43. std::string ctx_test_memoryContext_setField();
  44. std::string llm_test_isDigit_digit();
  45. std::string llm_test_isDigit_notDigit();
  46. std::string llm_test_strToInt();
  47. #endif // main_HEADER