-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
48 lines (31 loc) · 1 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
simple csgo loader that looks really cool
example cpp
----------------------
#include "imgui.h"
void RenderImGui()
{
ImGui::Begin("CS:GO Loader");
if (ImGui::Button("Enable Aimbot"))
{
/* exmpty */
}
ImGui::Checkbox("ESP", &espEnabled);
ImGui::End();
}
//main loop
void MainLoop()
{
while (gameIsRunning)
{
ImGui_ImplXXX_NewFrame(); // Replace XXX with your platform/renderer
RenderImGui();
// resent frame, etc.
}
}
README.txt
-----------
this whole source code is based off of https://github.com/ocornut/imgui and using its core libary so if you want to know about it just go over at https://github.com/ocornut/imgui/wiki and read , id also recommend compiling this in visual stuido , since it will be faster and easier prob could read at https://www.reddit.com/r/Cplusplus/comments/w32xj1/how_to_compile_c_code_on_vscode/
references:
-----------
- https://github.com/ocornut/imgui
- https://github.com/ocornut/imgui/wiki