aboutsummaryrefslogtreecommitdiff
path: root/oop2eindopdr/Pokedex.cpp
blob: 67bc2dc4eb7a2548854e27e98b4097e310cd036f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "Pokedex.h"

Pokedex::Pokedex() {

}

Pokedex::~Pokedex() {

}

void Pokedex::load_collection_remote() {

}

void Pokedex::load_collection_local() {

}

void Pokedex::verify_collection() {

}

std::vector<PokemonCard*> Pokedex::search_cards_by_id(std::string query) {
	return {};
}