2021-08-10 23:13:21 +02:00
|
|
|
#include "main_tabs.hpp"
|
|
|
|
|
|
|
|
namespace big
|
|
|
|
{
|
|
|
|
void tab_main::tab_settings()
|
|
|
|
{
|
|
|
|
if (ImGui::BeginTabItem("Settings"))
|
|
|
|
{
|
2021-12-22 21:30:09 +01:00
|
|
|
ImGui::Text("No settings to be modified as of now");
|
2021-08-10 23:13:21 +02:00
|
|
|
|
|
|
|
ImGui::EndTabItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|