1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-18 06:13:51 +00:00
openmw/components/bsa/ba2file.hpp
2025-12-11 13:03:53 +01:00

22 lines
466 B
C++

#ifndef OPENMW_COMPONENTS_BSA_BA2FILE_HPP
#define OPENMW_COMPONENTS_BSA_BA2FILE_HPP
#include <cstdint>
#include <string_view>
namespace Bsa
{
uint32_t generateHash(std::string_view name);
uint32_t generateExtensionHash(std::string_view extension);
enum class BA2Version : std::uint32_t
{
Fallout4 = 1,
StarfieldGeneral = 2,
StarfieldDDS = 3,
Fallout4NextGen_v7 = 7,
Fallout4NextGen_v8 = 8,
};
}
#endif