Research portable Memory game | Исследовать портируемую игру Память
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
166B

  1. #include <map>
  2. #include <string>
  3. struct MemoryContext {
  4. int playfieldSize = 0;
  5. std::map<int, int> playfieldItems;
  6. };
  7. MemoryContext memory_createEmptyContext();