29 lines
426 B
C++
29 lines
426 B
C++
/*
|
|
* InfoPanel.hpp
|
|
*
|
|
* Created on: Jul 7, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
/*
|
|
#include "../../common.h"
|
|
#include "../../sdk.h"
|
|
|
|
namespace menu { namespace im {
|
|
|
|
// used to determine what var we need to display
|
|
enum class EInfo {
|
|
AIMBOT,
|
|
AIMKEY
|
|
};
|
|
|
|
void RenderInfoPanel();
|
|
void AddInfoItem(EInfo info_type, int id);
|
|
|
|
|
|
std::string GetBoolString(CatVar* value);
|
|
CatVar* GetCatVar(const std::string name);
|
|
|
|
|
|
|
|
}}*/
|