From 76bc3b3677062c0c1a6b9fa08ff20d12e470159c Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 4 Nov 2024 02:19:09 -0500 Subject: Some old refactoring + some new refactoring --- wizard.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 wizard.h (limited to 'wizard.h') diff --git a/wizard.h b/wizard.h new file mode 100644 index 0000000..9b27143 --- /dev/null +++ b/wizard.h @@ -0,0 +1,25 @@ +#ifndef WIZARD_H_1014B13E +#define WIZARD_H_1014B13E + +#include +#include + +#include "cardset.h" +#include "imagestore.h" + +class wizard { + public: + wizard(std::string cardsPath, std::string cachePath, std::string outputPath, + std::string jsonPath, std::mt19937& rng); + + void run(); + + private: + cardset cards_; + imagestore images_; + std::string outputPath_; + std::string jsonPath_; + std::mt19937& rng_; +}; + +#endif /* end of include guard: WIZARD_H_1014B13E */ -- cgit 1.4.1