From 4bc851544831e37b6173d0ad05806fd841e216fb Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 4 Nov 2024 20:42:36 -0500 Subject: Re-attempt 10 times, some tweaks to OCR, pre-filter card pool --- cardset.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cardset.h') diff --git a/cardset.h b/cardset.h index 217d859..2e39f5c 100644 --- a/cardset.h +++ b/cardset.h @@ -17,14 +17,16 @@ struct card { std::string imageUri; card_frame frame; std::string uuid; + std::string artist; card(size_t id, std::string name, std::string imageUri, card_frame frame, - std::string uuid) + std::string uuid, std::string artist) : id(id), name(std::move(name)), imageUri(std::move(imageUri)), frame(frame), - uuid(std::move(uuid)) {} + uuid(std::move(uuid)), + artist(std::move(artist)) {} }; class cardset { -- cgit 1.4.1