summaryrefslogtreecommitdiff
path: root/src/csgo/trace.h
diff options
context:
space:
mode:
authornavewindre <nw@moneybot.cc>2024-07-12 05:40:41 +0200
committernavewindre <nw@moneybot.cc>2024-07-12 05:40:41 +0200
commit9d7cb5b7ad1cd03f9d3491d0eb8544460d975c81 (patch)
tree4a843c7785035ca548625ccf988ac924b8815f85 /src/csgo/trace.h
parent6634e62e788f10b2ba55c548381162d3ef1d37a0 (diff)
base shit
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