diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-10-31 23:15:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-31 23:15:26 +0000 |
commit | c8181a1719fefc8b9d7ed52888f6a207fcdf026f (patch) | |
tree | ca4a26d2028bcbe9d7c5a33462834ed1217df9a8 /NorthstarDLL/r2engine.h | |
parent | d3adc574608540bf089f88fb40b798b60edaadad (diff) | |
download | NorthstarLauncher-c8181a1719fefc8b9d7ed52888f6a207fcdf026f.tar.gz NorthstarLauncher-c8181a1719fefc8b9d7ed52888f6a207fcdf026f.zip |
add KeyValues class (#303)
Diffstat (limited to 'NorthstarDLL/r2engine.h')
-rw-r--r-- | NorthstarDLL/r2engine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/NorthstarDLL/r2engine.h b/NorthstarDLL/r2engine.h index 016e7db1..e428e1cc 100644 --- a/NorthstarDLL/r2engine.h +++ b/NorthstarDLL/r2engine.h @@ -1,4 +1,5 @@ #pragma once +#include "keyvalues.h" // use the R2 namespace for game funcs namespace R2 @@ -167,7 +168,7 @@ namespace R2 // +0x56 char pad1[0x202]; - void** m_ConVars; // this is a KeyValues* object but not got that struct mapped out atm + KeyValues* m_ConVars; // this is a KeyValues* object but not got that struct mapped out atm char pad2[0x240]; |