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
2017-11-14 21:06:36 +03:00

30 lines
463 B
C++

/*
* Radar.hpp
*
* Created on: Mar 28, 2017
* Author: nullifiedcat
*/
#ifndef HACKS_RADAR_HPP_
#define HACKS_RADAR_HPP_
#include "visual/atlas.hpp"
#include "common.hpp"
namespace hacks { namespace tf { namespace radar {
extern CatVar size;
extern CatVar zoom;
extern CatVar radar_enabled;
extern CatVar radar_x;
extern CatVar radar_y;
void Init();
std::pair<int, int> WorldToRadar(int x, int y);
void Draw();
}}}
#endif /* HACKS_RADAR_HPP_ */