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
commit28f41cf689def99fb586bfca47b7e1786227a5a2 (patch)
tree4a843c7785035ca548625ccf988ac924b8815f85 /src/csgo/trace.h
parent2ebf959ec02048c15323e1bbfc63faedcf5067b6 (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