1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-17 19:43:08 +00:00
openmw/components/bsa/ba2file.hpp
2025-12-08 17:44:15 +01:00

24 lines
505 B
C++

#ifndef OPENMW_COMPONENTS_BSA_BA2FILE_HPP
#define OPENMW_COMPONENTS_BSA_BA2FILE_HPP
#include <cstdint>
#include <string>
#include <components/vfs/pathutil.hpp>
namespace Bsa
{
uint32_t generateHash(std::string_view name);
uint32_t generateExtensionHash(VFS::Path::NormalizedView file);
enum class BA2Version : std::uint32_t
{
Fallout4 = 1,
StarfieldGeneral = 2,
StarfieldDDS = 3,
Fallout4NextGen_v7 = 7,
Fallout4NextGen_v8 = 8,
};
}
#endif