diff options
| author | navewindre <nw@moneybot.cc> | 2024-07-12 00:55:39 +0200 |
|---|---|---|
| committer | navewindre <nw@moneybot.cc> | 2024-07-12 00:55:39 +0200 |
| commit | 2ebf959ec02048c15323e1bbfc63faedcf5067b6 (patch) | |
| tree | 18862ba5d3b4be44294c0a81317d31eace7ee150 /src/csgo/csgo.h | |
| parent | ecca2728f1a583ea484f8bdcda390a30e4906f1d (diff) | |
ha haaa
Diffstat (limited to 'src/csgo/csgo.h')
| -rw-r--r-- | src/csgo/csgo.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/csgo/csgo.h b/src/csgo/csgo.h new file mode 100644 index 0000000..f23be80 --- /dev/null +++ b/src/csgo/csgo.h @@ -0,0 +1,22 @@ +//|_ _ _. _ ._ |_ _. _ | +//| | (/_ (_| \/ (/_ | | | | (_| (_ |< + +#pragma once +#include "../process.h" +#include "../conout.h" +#include "interface.h" + + +class CSGO : public PROCESS32 { +public: + CSGO() : PROCESS32( "csgo.exe" ) {}; + + void dump_interfaces() { + interfaces = srceng_get_interfaces( this ); + } + + U32 client; + U32 engine; + + VECTOR<IFACE_ENTRY> interfaces; +};
\ No newline at end of file |
