Research portable Memory game | Исследовать портируемую игру Память
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
123456789 |
- #include <map>
- #include <string>
-
- struct MemoryContext {
- int playfieldSize = 0;
- std::map<int, int> playfieldItems;
- };
-
- MemoryContext memory_createEmptyContext();
|