add: player esp and snaplines

for now the esp will show "Player" instead of the real player name //TOFIX
This commit is contained in:
2024-05-28 10:22:01 +02:00
parent 5968a83932
commit 01bdc8e683
6 changed files with 96 additions and 0 deletions

View File

@@ -52,6 +52,8 @@ void DrawVisualsTab() {
}
ImGui::SameLine();
ImGui::Text("Flashlight color");
*/
ImGui::Checkbox("Player ESP", &settings::player_esp);
ImGui::SameLine();
@@ -77,6 +79,7 @@ void DrawVisualsTab() {
ImGui::EndPopup();
}
/*
ImGui::Checkbox("Azazel ESP", &settings::azazel_esp);
ImGui::SameLine();
bool open_azacolor_popup = ImGui::ColorButton("azaespcolor", ImVec4(settings::azazel_esp_color[0], settings::azazel_esp_color[1], settings::azazel_esp_color[2], settings::azazel_esp_color[3]));