prime/include/Kyoto_CWD/CPakFile.hpp
Luke Street 27d94af97b Add headers, clang-format, decompctx.py & more
Former-commit-id: 53f8d3cba7bd2d675cf6b99544af58bd24f98620
2022-04-09 20:17:13 -04:00

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