summaryrefslogtreecommitdiff
path: root/src/csgo/trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/csgo/trace.h')
-rw-r--r--src/csgo/trace.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/csgo/trace.h b/src/csgo/trace.h
deleted file mode 100644
index e496f15..0000000
--- a/src/csgo/trace.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#include "../disasm.h"
-
-#include "hack.h"
-
-struct TRACE_ARGS {
- U32 ignore_ent;
- VEC3 start;
- VEC3 end;
- U32 mask;
-
- VEC3 ret_end;
- VEC3 ret_normal;
- U32 ret_ent;
-};
-
-__declspec( naked ) void __stdcall trace_shellcode( TRACE_ARGS* args ) {
- __asm {
- push ebp
- mov ebp, esp
- sub esp, LOCAL_SIZE
- }
-
-
-
- DISASM_SIG();
-
- __asm {
- mov esp, ebp
- pop ebp
- ret
- }
-}
-
-U32 trace_allocate( CSGO* p ) {
- DISASM_INFO disasm = disasm_function( &trace_shellcode );
-}
-
-U32 trace_find_func( CSGO* p ) {
-
-} \ No newline at end of file