2021-04-20 21:46:48 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2023-11-28 00:19:42 +01:00
|
|
|
#include <init/splash_window.hpp>
|
2021-04-20 21:46:48 +02:00
|
|
|
|
2023-11-28 00:19:42 +01:00
|
|
|
namespace hex::init {
|
2021-04-20 21:46:48 +02:00
|
|
|
|
2023-10-11 22:38:54 +02:00
|
|
|
/**
|
|
|
|
* @brief Runs the exit tasks and print them to console
|
|
|
|
*/
|
|
|
|
void runExitTasks();
|
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
std::vector<Task> getInitTasks();
|
|
|
|
std::vector<Task> getExitTasks();
|
|
|
|
}
|