Research portable Memory game | Исследовать портируемую игру Память
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
1234567891011121314151617181920212223242526272829
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. #include "memory_test.h"
  5. #include "memory_Context.h"
  6. extern memory_Context memory_createContext();
  7. int main() {
  8. memory_createContext();
  9. std::cout
  10. << memory_test_generateConstPlayfield()
  11. << std::endl
  12. << memory_test_selectItem_1x()
  13. << std::endl
  14. << memory_test_selectItem_2x()
  15. << std::endl
  16. << memory_test_selectItem_3x()
  17. << std::endl
  18. << memory_test_shouldDeselectMismatchedItems()
  19. << std::endl
  20. << memory_test_shouldDeselectMismatchedItems_itemTwice()
  21. << std::endl
  22. << memory_test_shouldDetectVictory()
  23. << std::endl
  24. << memory_test_shouldHideMatchingItems()
  25. << std::endl
  26. ;
  27. }