Skip to content

Commit

Permalink
misc: Randomize string
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiga74164 committed Apr 12, 2024
1 parent a076f8d commit aadb50f
Show file tree
Hide file tree
Showing 6 changed files with 217 additions and 170 deletions.
3 changes: 2 additions & 1 deletion cheat/src/Render/Gui/gui.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "gui.h"
#include "global.h"
#include "imgui.h"
#include "Utils.h"
#include "utils/gui-util.hpp"

Expand All @@ -12,7 +13,7 @@ void Gui::Render()
ImGui::BeginGroup();
{
ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(0, 0, 0, 0));
GuiUtil::CenterText("Solo Leveling Cheeto", 0, 0);
GuiUtil::CenterText(Utils::GenerateRandomString(10).c_str(), 0, 0);
ImGui::Spacing();
ImGui::Spacing();
ImGui::PopStyleColor();
Expand Down
Loading

0 comments on commit aadb50f

Please sign in to comment.