Skip to content

Commit

Permalink
feat: add 'Binary' theme
Browse files Browse the repository at this point in the history
  • Loading branch information
R-unic committed Apr 15, 2024
1 parent b3fac91 commit 59e4394
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
17 changes: 13 additions & 4 deletions GirlKisser/Cheat/Gui/imgui_hooker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ std::vector<std::string> get_native_font_list(bool ttf_only)
}

auto fonts = get_native_font_list(true);
std::vector<std::string> themes = {"GirlKisser"};
std::vector<std::string> themes = {"GirlKisser", "Binary"};

// https://github.com/ocornut/imgui/issues/707
void init_style()
Expand All @@ -82,9 +82,18 @@ void init_style()
{
theme = {
ImVec4(0.00f, 0.00f, 0.00f, 0.00f),
ImVec4(0.49f, 0.145f, 0.439f, 1.00f),
ImVec4(0.875f, 0.12f, 0.9f, 1.00f),
ImVec4(0.82f, 0.35f, 0.75f, 1.00f)
ImVec4(125 / 255, 37 / 255, 112 / 255, 1.00f),
ImVec4(223 / 255, 31 / 255, 230 / 255, 1.00f),
ImVec4(209 / 255, 89 / 255, 191 / 255, 1.00f)
};
}
else if (current_theme == "Binary")
{
theme = {
ImVec4(0.00f, 0.00f, 0.00f, 0.00f),
ImVec4(41 / 255, 125 / 255, 37 / 255, 1.00f),
ImVec4(41 / 255, 230 / 255, 31 / 255, 1.00f),
ImVec4(93 / 255, 209 / 255, 89 / 255, 1.00f)
};
}

Expand Down
5 changes: 0 additions & 5 deletions GirlKisser/Cheat/Hooks/Hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
#include "../Module/Impl/ModulePriceModifier.h"
#include "../Module/Impl/ModuleSeasonPass.h"
#include "../Module/Impl/ModuleRewardsMultiplier.h"
#include "../Module/Impl/ModuleExtraDisplay.h"

class ModuleSpeed;
uintptr_t Hooks::GameBase;
Expand Down Expand Up @@ -395,10 +394,6 @@ void Hooks::load()
aim_bot_module = new ModuleAimBot();
player_move_c_modules.push_back((ModuleBase*) aim_bot_module);
player_move_c_modules.push_back((ModuleBase*) new ModuleInvisibility());
/*
does fucking nothing with these vals xddddd
player_move_c_modules.push_back((ModuleBase*) new ModuleExtraDisplay());
*/

on_imgui_draw_modules.push_back((ModuleBase*) new ModuleShowEnabledModules());

Expand Down

0 comments on commit 59e4394

Please sign in to comment.