in progress: cxx17 namespaces
This commit is contained in:
parent
92c158806d
commit
554b382162
@ -13,11 +13,7 @@
|
|||||||
class ConVar;
|
class ConVar;
|
||||||
class IClientEntity;
|
class IClientEntity;
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::shared::aimbot
|
||||||
{
|
|
||||||
namespace shared
|
|
||||||
{
|
|
||||||
namespace aimbot
|
|
||||||
{
|
{
|
||||||
|
|
||||||
// Used to store aimbot data to prevent calculating it again
|
// Used to store aimbot data to prevent calculating it again
|
||||||
@ -61,5 +57,3 @@ void DoSlowAim(Vector &inputAngle);
|
|||||||
bool UpdateAimkey();
|
bool UpdateAimkey();
|
||||||
float EffectiveTargetingRange();
|
float EffectiveTargetingRange();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -9,16 +9,10 @@
|
|||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::shared::announcer
|
||||||
{
|
|
||||||
namespace shared
|
|
||||||
{
|
|
||||||
namespace announcer
|
|
||||||
{
|
{
|
||||||
|
|
||||||
void playsound(const std::string &);
|
void playsound(const std::string &);
|
||||||
void init();
|
void init();
|
||||||
void shutdown();
|
void shutdown();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -10,11 +10,7 @@
|
|||||||
class CatVar;
|
class CatVar;
|
||||||
class CUserCmd;
|
class CUserCmd;
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::shared::antiaim
|
||||||
{
|
|
||||||
namespace shared
|
|
||||||
{
|
|
||||||
namespace antiaim
|
|
||||||
{
|
{
|
||||||
|
|
||||||
// TODO paste AA from AimTux
|
// TODO paste AA from AimTux
|
||||||
@ -35,6 +31,4 @@ extern int safe_space;
|
|||||||
void SetSafeSpace(int safespace);
|
void SetSafeSpace(int safespace);
|
||||||
bool ShouldAA(CUserCmd *cmd);
|
bool ShouldAA(CUserCmd *cmd);
|
||||||
void ProcessUserCmd(CUserCmd *cmd);
|
void ProcessUserCmd(CUserCmd *cmd);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
@ -7,15 +7,12 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::tf2::antibackstab
|
||||||
{
|
|
||||||
namespace tf2
|
|
||||||
{
|
|
||||||
namespace antibackstab
|
|
||||||
{
|
{
|
||||||
|
|
||||||
extern bool noaa;
|
extern bool noaa;
|
||||||
|
|
||||||
void CreateMove();
|
void CreateMove();
|
||||||
|
|
||||||
void PaintTraverse();
|
void PaintTraverse();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -13,11 +13,7 @@
|
|||||||
#include "ac/antiaim.hpp"
|
#include "ac/antiaim.hpp"
|
||||||
#include "ac/bhop.hpp"
|
#include "ac/bhop.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::shared::anticheat
|
||||||
{
|
|
||||||
namespace shared
|
|
||||||
{
|
|
||||||
namespace anticheat
|
|
||||||
{
|
{
|
||||||
|
|
||||||
void Accuse(int eid, const std::string &hack, const std::string &details);
|
void Accuse(int eid, const std::string &hack, const std::string &details);
|
||||||
@ -27,6 +23,4 @@ void CreateMove();
|
|||||||
|
|
||||||
void ResetPlayer(int index);
|
void ResetPlayer(int index);
|
||||||
void ResetEverything();
|
void ResetEverything();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
@ -9,16 +9,10 @@
|
|||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::tf2::antidisguise
|
||||||
{
|
|
||||||
namespace tf2
|
|
||||||
{
|
|
||||||
namespace antidisguise
|
|
||||||
{
|
{
|
||||||
|
|
||||||
extern CatVar enabled;
|
extern CatVar enabled;
|
||||||
|
|
||||||
void Draw();
|
void Draw();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -7,15 +7,9 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::tf2::autobackstab
|
||||||
{
|
|
||||||
namespace tf2
|
|
||||||
{
|
|
||||||
namespace autobackstab
|
|
||||||
{
|
{
|
||||||
|
|
||||||
void CreateMove();
|
void CreateMove();
|
||||||
const Vector GetWorldSpaceCenter(CachedEntity *ent);
|
const Vector GetWorldSpaceCenter(CachedEntity *ent);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -6,13 +6,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
namespace hacks
|
namespace hacks::shared::deadringer
|
||||||
{
|
|
||||||
namespace shared
|
|
||||||
{
|
|
||||||
namespace deadringer
|
|
||||||
{
|
{
|
||||||
|
|
||||||
void CreateMove();
|
void CreateMove();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -9,13 +9,8 @@
|
|||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
|
|
||||||
namespace hacks
|
namespace hacks::tf::autodetonator
|
||||||
{
|
|
||||||
namespace tf
|
|
||||||
{
|
|
||||||
namespace autodetonator
|
|
||||||
{
|
{
|
||||||
|
|
||||||
void CreateMove();
|
void CreateMove();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Reference in New Issue
Block a user