diff options
Diffstat (limited to 'cheat/gmod/identity.hpp')
| -rw-r--r-- | cheat/gmod/identity.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cheat/gmod/identity.hpp b/cheat/gmod/identity.hpp new file mode 100644 index 0000000..0d6e778 --- /dev/null +++ b/cheat/gmod/identity.hpp @@ -0,0 +1,16 @@ +#pragma once
+#include "sdk.hpp"
+
+namespace features
+{
+ class c_identity {
+ private:
+ void clantag_changer( );
+ void name_changer( );
+ public:
+ void operator()( ) {
+ clantag_changer( );
+ name_changer( );
+ }
+ };
+}
\ No newline at end of file |
