Research portable Memory game | Исследовать портируемую игру Память
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #include <map>
- #include <string>
-
- struct MemoryContext {
- int playfieldSize = 0;
- std::map<int, int> playfieldItems;
- };
-
- MemoryContext memory_createEmptyContext();
|