1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-13 11:43:06 +00:00
openmw/components/bsa/ba2file.hpp
2024-04-26 10:30:42 +03:00

22 lines
410 B
C++

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