diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-04-12 01:54:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 01:54:12 +0100 |
commit | b60432c85cb6e37c4a8bcdddeded75d3b71213b3 (patch) | |
tree | 98383e09196efad0b7af85f7e403aa129085f641 /NorthstarDedicatedTest/rpakfilesystem.h | |
parent | ce8a64e7fa0aabf70e8ce9c0f9bbdef6892f240d (diff) | |
download | NorthstarLauncher-b60432c85cb6e37c4a8bcdddeded75d3b71213b3.tar.gz NorthstarLauncher-b60432c85cb6e37c4a8bcdddeded75d3b71213b3.zip |
more changes to mod rpak loading (#139)
* more changes to mod rpak loading
* reformat
Diffstat (limited to 'NorthstarDedicatedTest/rpakfilesystem.h')
-rw-r--r-- | NorthstarDedicatedTest/rpakfilesystem.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/rpakfilesystem.h b/NorthstarDedicatedTest/rpakfilesystem.h index 334104a9..3c104822 100644 --- a/NorthstarDedicatedTest/rpakfilesystem.h +++ b/NorthstarDedicatedTest/rpakfilesystem.h @@ -6,7 +6,11 @@ class PakLoadManager { public: void LoadPakSync(const char* path); - void LoadPakAsync(const char* path); + void LoadPakAsync(const char* path, bool bMarkForUnload); + void UnloadPaks(); + + private: + std::vector<int> m_pakHandlesToUnload; }; extern PakLoadManager* g_PakLoadManager;
\ No newline at end of file |