add: aimbot, smoothing, fov

This commit is contained in:
2023-12-30 12:05:42 +01:00
parent cee8c5bae4
commit b0fdadaed6
2 changed files with 46 additions and 1 deletions

View File

@@ -156,7 +156,7 @@ void DrawCircleFilled(int x, int y, int radius, RGBA* color) {
ImGui::GetOverlayDrawList()->AddCircleFilled(ImVec2(x, y), radius, ImGui::ColorConvertFloat4ToU32(ImVec4(color->R / 255.0, color->G / 255.0, color->B / 255.0, color->A / 255.0)));
}
void DrawCircle(int x, int y, int radius, RGBA* color, int segments) {
void DrawCircle(int x, int y, int radius, RGBA* color, int segments = 0) {
ImGui::GetOverlayDrawList()->AddCircle(ImVec2(x, y), radius, ImGui::ColorConvertFloat4ToU32(ImVec4(color->R / 255.0, color->G / 255.0, color->B / 255.0, color->A / 255.0)), segments);
}