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/drawmgr.hpp
2017-11-13 09:41:53 +03:00

22 lines
340 B
C++

/*
* drawmgr.hpp
*
* Created on: May 22, 2017
* Author: nullifiedcat
*/
#ifndef DRAWMGR_HPP_
#define DRAWMGR_HPP_
#include "beforecheaders.hpp"
#include <mutex>
#include "aftercheaders.hpp"
extern std::mutex drawing_mutex;
void BeginCheatVisuals();
void DrawCheatVisuals();
void EndCheatVisuals();
#endif /* DRAWMGR_HPP_ */