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.

преди 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. }