diff options
| author | jz0 <[email protected]> | 2020-05-03 22:38:59 +0300 |
|---|---|---|
| committer | jz0 <[email protected]> | 2020-05-03 22:38:59 +0300 |
| commit | fdb81a898151278a66af544dfae6bfcbbf9dc3d2 (patch) | |
| tree | 8884fc5c21b3daf0a32cc145c4488b9e708deec4 /source2-basehook/Source2SDK/ClientClass.hpp | |
| download | archived-source2-basehook-fdb81a898151278a66af544dfae6bfcbbf9dc3d2.tar.xz archived-source2-basehook-fdb81a898151278a66af544dfae6bfcbbf9dc3d2.zip | |
Initial commit
Diffstat (limited to 'source2-basehook/Source2SDK/ClientClass.hpp')
| -rw-r--r-- | source2-basehook/Source2SDK/ClientClass.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source2-basehook/Source2SDK/ClientClass.hpp b/source2-basehook/Source2SDK/ClientClass.hpp new file mode 100644 index 0000000..cf6806c --- /dev/null +++ b/source2-basehook/Source2SDK/ClientClass.hpp @@ -0,0 +1,21 @@ +#pragma once +#include "Schema.hpp" +//Greets to Praydog + +class ClientClass +{ +public: + char* m_pNetworkName; //0x0000 + char* m_pClassName; //0x0008 + ClientClass* m_pNext; //0x0010 + void* m_pCreateFn; //0x0018 + void* m_pCreateEventFn; //0x0020 + void* m_pDestroyFn; //0x0028 + char pad_0030[8]; //0x0030 + char* m_pLibNameAndClassName; //0x0038 + SchemaRecvTable* RecvTable; //0x0040 + char pad_0048[20]; //0x0048 + int m_ClassID; //0x005C + void* N00000046; //0x0060 + void* N00000047; //0x0068 +};
\ No newline at end of file |