Research portable Memory game | Исследовать портируемую игру Память
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
123456789 |
- #include <map>
- #include <string>
-
- struct MemoryContext {
- int playfieldSize = 0;
- std::map<int, int> playfieldItems;
- };
-
- MemoryContext memory_createEmptyContext();
|