This commit is contained in:
Oscar
2025-07-22 22:06:34 +03:00
parent d3c189f949
commit f892794557
780 changed files with 436498 additions and 170 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include "painter.h"
#include "core/variables.h"
#include "core/interfaces.h"
#include "sdk/interfaces/iswapchaindx11.h"
class AimRangePainter : public Painter
{
public:
virtual void Draw(ImDrawList* pDrawList) override
{
if (C_GET(bool, Vars.bLegitbot))
{
DXGI_SWAP_CHAIN_DESC sd;
I::SwapChain->pDXGISwapChain->GetDesc(&sd);
pDrawList->AddCircle({ sd.BufferDesc.Width / 2.f, sd.BufferDesc.Height / 2.f }, C_GET(float , Vars.aim_range), IM_COL32(255, 0, 0, 255), 0.3);
}
}
};