mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-08-03 07:16:31 -04:00
21 lines
540 B
C++
21 lines
540 B
C++
#ifndef OPENMW_COMPONENTS_VFS_REGISTER_ARCHIVES_H
|
|
#define OPENMW_COMPONENTS_VFS_REGISTER_ARCHIVES_H
|
|
|
|
#include <components/files/collections.hpp>
|
|
|
|
namespace ToUTF8
|
|
{
|
|
class StatelessUtf8Encoder;
|
|
}
|
|
|
|
namespace VFS
|
|
{
|
|
class Manager;
|
|
|
|
/// @brief Register BSA and file system archives based on the given OpenMW configuration.
|
|
void registerArchives(VFS::Manager* vfs, const Files::Collections& collections,
|
|
const std::vector<std::string>& archives, bool useLooseFiles, const ToUTF8::StatelessUtf8Encoder* encoder);
|
|
}
|
|
|
|
#endif
|