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.

10 satır
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();