24 lines
265 B
C++
Executable File
24 lines
265 B
C++
Executable File
/*
|
|
* Radar.hpp
|
|
*
|
|
* Created on: Mar 28, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "visual/atlas.hpp"
|
|
#include "common.hpp"
|
|
|
|
namespace hacks
|
|
{
|
|
namespace tf
|
|
{
|
|
namespace radar
|
|
{
|
|
std::pair<int, int> WorldToRadar(int x, int y);
|
|
void Draw();
|
|
}
|
|
}
|
|
}
|