summary refs log tree commit diff stats
path: root/cardset.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-11-04 20:42:36 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-11-04 20:42:36 -0500
commit4bc851544831e37b6173d0ad05806fd841e216fb (patch)
treed6470fdb41fa6d9a87dd0a937c34d50af5529c35 /cardset.h
parentb5cc6373fbfe2db20bb14216242c2c56f9bfbafe (diff)
downloadwizard-4bc851544831e37b6173d0ad05806fd841e216fb.tar.gz
wizard-4bc851544831e37b6173d0ad05806fd841e216fb.tar.bz2
wizard-4bc851544831e37b6173d0ad05806fd841e216fb.zip
Re-attempt 10 times, some tweaks to OCR, pre-filter card pool HEAD main
Diffstat (limited to 'cardset.h')
-rw-r--r--cardset.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cardset.h b/cardset.h index 217d859..2e39f5c 100644 --- a/cardset.h +++ b/cardset.h
@@ -17,14 +17,16 @@ struct card {
17 std::string imageUri; 17 std::string imageUri;
18 card_frame frame; 18 card_frame frame;
19 std::string uuid; 19 std::string uuid;
20 std::string artist;
20 21
21 card(size_t id, std::string name, std::string imageUri, card_frame frame, 22 card(size_t id, std::string name, std::string imageUri, card_frame frame,
22 std::string uuid) 23 std::string uuid, std::string artist)
23 : id(id), 24 : id(id),
24 name(std::move(name)), 25 name(std::move(name)),
25 imageUri(std::move(imageUri)), 26 imageUri(std::move(imageUri)),
26 frame(frame), 27 frame(frame),
27 uuid(std::move(uuid)) {} 28 uuid(std::move(uuid)),
29 artist(std::move(artist)) {}
28}; 30};
29 31
30class cardset { 32class cardset {