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/visual/drawmgr.hpp
nullifiedcat f448e06a87 Revert "clang-format"
This reverts commit 0be1dba24b025ba6ebc26e53cda545c222da7047.
2017-12-02 17:38:44 +03:00

24 lines
370 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 render_cheat_visuals();
void BeginCheatVisuals();
void DrawCheatVisuals();
void EndCheatVisuals();
#endif /* DRAWMGR_HPP_ */