mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-20 08:11:32 +00:00
22 lines
362 B
C++
22 lines
362 B
C++
#ifndef _CPAKFILE_HPP
|
|
#define _CPAKFILE_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "CDvdFile.hpp"
|
|
|
|
class CPakFile : CDvdFile {
|
|
public:
|
|
bool IsWorldPak() const { return x28_26_worldPak; }
|
|
void EnsureWorldPakReady();
|
|
|
|
private:
|
|
bool x28_24_buildDepList : 1;
|
|
bool x28_25_aramFile : 1;
|
|
bool x28_26_worldPak : 1;
|
|
bool x28_27_stashedInARAM : 1;
|
|
// TODO
|
|
};
|
|
|
|
#endif
|