mirror of
https://github.com/sebastiandine/Card-Collection-Manager-3.git
synced 2026-08-30 18:01:17 +00:00
12 lines
369 B
C++
12 lines
369 B
C++
#include "ccm/games/pokemonjp/JapanesePokemonGameModule.hpp"
|
|
|
|
namespace ccm {
|
|
|
|
JapanesePokemonGameModule::JapanesePokemonGameModule(IHttpClient& http,
|
|
JapanesePokemonEnCatalog catalog)
|
|
: catalog_(std::move(catalog)),
|
|
setSource_(http, catalog_),
|
|
previewSource_(http, catalog_) {}
|
|
|
|
} // namespace ccm
|