Research portable Memory game | Исследовать портируемую игру Память
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 10 mēnešiem
pirms 10 mēnešiem
pirms 10 mēnešiem
pirms 10 mēnešiem
pirms 10 mēnešiem
pirms 10 mēnešiem
pirms 10 mēnešiem
pirms 10 mēnešiem
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. }