Files
FC1/CrySystem/PakVars.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

14 lines
284 B
C

#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