forked from alimb2/Ayyware-Full-Fixed-Updated-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hooks.h
25 lines (20 loc) · 731 Bytes
/
Hooks.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
Syn's AyyWare Framework 2015
*/
#pragma once
// It's actually in DLLMain but w/e
extern bool DoUnload;
#include "Utilities.h"
namespace Hooks
{
void Initialise();
void UndoHooks();
// VMT Managers
extern Utilities::Memory::VMTManager VMTPanel; // Hooking drawing functions
extern Utilities::Memory::VMTManager VMTClient; // Maybe CreateMove
extern Utilities::Memory::VMTManager VMTClientMode; // CreateMove for functionality
extern Utilities::Memory::VMTManager VMTModelRender; // DrawModelEx for chams
extern Utilities::Memory::VMTManager VMTPrediction; // InPrediction for no vis recoil
extern Utilities::Memory::VMTManager VMTPlaySound; // Autoaccept shit
extern Utilities::Memory::VMTManager VMTRenderView;
};