#include #include namespace hex::plugin::builtin { void registerIntroductionTutorial(); void registerTutorials() { TutorialManager::setRenderer([](const std::string &message) { return [markdown = std::make_shared(message)] { markdown->draw(); }; }); registerIntroductionTutorial(); } }