-
Автор темы
- #1
Код:
if (vars.esp.hitmarker[1])
{
Vector world;
if (math::world_to_screen(hitmarker.point, world))
{
auto alpha = (int)((hitmarker.hurt_time + 2.f - m_globals()->m_curtime )* 255.f);
hitmarker.hurt_color.SetAlpha(alpha);
render::get().line(world.x + 0, world.y + 3 , world.x + 0 , world.y - 3 , hitmarker.hurt_color);
render::get().line(world.x - 4, world.y - 0 , world.x + 5 , world.y - 0 , hitmarker.hurt_color);
}
}