This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/hacks/Radar.hpp
2018-05-15 17:51:21 +02:00

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();
}
}
}