diff options
| author | JustSomePwner <crotchyalt@gmail.com> | 2018-08-30 14:01:54 +0200 |
|---|---|---|
| committer | JustSomePwner <crotchyalt@gmail.com> | 2018-08-30 14:01:54 +0200 |
| commit | 7ccb819f867493f8ec202ea3b39c94c198c64584 (patch) | |
| tree | 94622e61af0ff359e3d6689cf274d74f60b2492a /tf2/base_cheat.h | |
| parent | 564d979b79e8a5aaa5014eba0ecd36c61575934f (diff) | |
first
Diffstat (limited to 'tf2/base_cheat.h')
| -rw-r--r-- | tf2/base_cheat.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tf2/base_cheat.h b/tf2/base_cheat.h new file mode 100644 index 0000000..832386c --- /dev/null +++ b/tf2/base_cheat.h @@ -0,0 +1,22 @@ +#pragma once
+#include "aim.h"
+#include "movement.h"
+#include "prediction.h"
+#include "visuals.hpp"
+#include "chams.h"
+#include "identity.h"
+#include "extra.h"
+namespace tf2 {
+ class c_base_cheat {
+ public:
+ features::c_legitbot aim;
+ features::c_movement movement;
+ features::c_prediction prediction;
+ features::c_visuals visuals;
+ features::c_chams chams;
+ features::c_identity identity;
+ features::c_extra extra;
+ };
+}
+
+static tf2::c_base_cheat g_cheat;
\ No newline at end of file |
