aboutsummaryrefslogtreecommitdiff
path: root/oop2eindopdr/Pokedex.cpp
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-12-24 11:25:22 +0100
committerlonkaars <loek@pipeframe.xyz>2022-12-24 11:25:22 +0100
commit23d23792e5acb06153f3478958c9070778de8edd (patch)
tree22ef7855d011ff7c3a02155e851ebf2fcce763f1 /oop2eindopdr/Pokedex.cpp
parentc98f9337940128178401bb6b2d242ce577080ca4 (diff)
Pokedex shim + user input handling in main.cpp
Diffstat (limited to 'oop2eindopdr/Pokedex.cpp')
-rw-r--r--oop2eindopdr/Pokedex.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/oop2eindopdr/Pokedex.cpp b/oop2eindopdr/Pokedex.cpp
new file mode 100644
index 0000000..67bc2dc
--- /dev/null
+++ b/oop2eindopdr/Pokedex.cpp
@@ -0,0 +1,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 {};
+}
+