UwUHax/drawing.h
PixelGM 311d55ec1f 2 New Items (Look Desc)
IGNOREINFECTED to INGNOREINFECTEDVISUALS

Added Ignore Witch on Aimbot
2021-08-28 13:35:33 +07:00

29 lines
970 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <Windows.h>
#include <iostream>
typedef unsigned long HFont;
namespace Fonts
{
extern HFont m_MenuFont;
extern HFont m_ListItemFont;
extern HFont m_WatermarkFont;
extern HFont m_VelocityFont;
}
namespace Draw
{
VOID InitFonts();
void FillRGBA(int x, int y, int w, int h, int r, int g, int b, int a);
bool WorldToScreen(const Vector &vOrigin, Vector &vScreen);
INT getWidht(unsigned long font, const char* input);
std::wstring stringToWide(const std::string& text);
VOID DrawStringA(unsigned long font, bool center, int x, int y, int r, int g, int b, int a, const char *input, ...);
void DrawTexts(unsigned long font, int x, int y, int r, int g, int b, int a, const wchar_t * text);
void DrawMonitorBar(int x, int y, int cur, const char * title);
void OutlinedRectangle(int x, int y, int w, int h, int r, int g, int b, int a);
void SoftOutlinedRectangle(int x, int y, int w, int h, int r, int g, int b, int a);
}