#pragma once #include #include #include namespace hex::init { struct Task { std::string name; std::function function; bool async; }; /** * @brief Runs the exit tasks and print them to console */ void runExitTasks(); std::vector getInitTasks(); std::vector getExitTasks(); }