feat(GUI): Added Tunables tab
This commit is contained in:
parent
b917ac9905
commit
e026f8e97d
@ -11,6 +11,7 @@ namespace big
|
||||
{
|
||||
ImGui::BeginTabBar("tabbar");
|
||||
tabbar::render_self();
|
||||
tabbar::render_tunables();
|
||||
ImGui::EndTabBar();
|
||||
}
|
||||
ImGui::End();
|
||||
|
@ -9,12 +9,11 @@
|
||||
|
||||
namespace big
|
||||
{
|
||||
using namespace features;
|
||||
|
||||
class tabbar
|
||||
{
|
||||
public:
|
||||
static void render_self();
|
||||
static void render_tunables();
|
||||
};
|
||||
|
||||
}
|
17
BigBaseV2/src/gui/tab_bar/tab_tunables.cpp
Normal file
17
BigBaseV2/src/gui/tab_bar/tab_tunables.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
#include "tab_bar.hpp"
|
||||
#include "pointers.hpp"
|
||||
#include "script_global.hpp"
|
||||
|
||||
namespace big
|
||||
{
|
||||
void tabbar::render_tunables()
|
||||
{
|
||||
if (ImGui::BeginTabItem("Tunables"))
|
||||
{
|
||||
if (ImGui::Checkbox("No Idle Kick", g_settings.options["no_idle_kick"].get<bool*>()))
|
||||
g_settings.save();
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user