
#include <Windows.h>
class enemy
{
int pitch, yaw, crosshairx, crosshairy;
};
class player
{
int pitch, yaw, xpos,ypos;
};
void aimbot(void)
{
player.pitch=enemy.pitch;
player.yaw=enemy.yaw;
player.crosshairx=enemy.posx;
player.crosshairy=enemy.posy;
}
int main()
{
aimbot();
}

#include <stdio.h>
int main()
{
printf( "Enter here-> www.google.com" );
return 0;
}