This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

14
CrySystem/PakVars.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef _CRY_SYSTEM_PAK_VARS_HDR_
#define _CRY_SYSTEM_PAK_VARS_HDR_
// variables that control behaviour of CryPak/StreamEngine subsystems
struct PakVars
{
int nPriority;
int nReadSlice;
int nLogMissingFiles;
PakVars():nPriority(1),nReadSlice(0), nLogMissingFiles(0){}
};
#endif