2023-03-03 12:27:25 +00:00
|
|
|
#ifndef BSA_BA2_FILE_H
|
|
|
|
#define BSA_BA2_FILE_H
|
|
|
|
|
2023-04-17 20:39:38 +00:00
|
|
|
#include <cstdint>
|
2023-04-18 18:23:03 +00:00
|
|
|
#include <string>
|
2023-03-03 12:27:25 +00:00
|
|
|
|
|
|
|
namespace Bsa
|
|
|
|
{
|
|
|
|
uint32_t generateHash(const std::string& name);
|
2024-01-21 19:54:54 +00:00
|
|
|
uint32_t generateExtensionHash(std::string_view extension);
|
2024-04-26 07:30:42 +00:00
|
|
|
|
|
|
|
enum class BA2Version : std::uint32_t
|
|
|
|
{
|
|
|
|
Fallout4 = 1,
|
|
|
|
StarfieldGeneral = 2,
|
|
|
|
StarfieldDDS = 3,
|
2024-04-28 02:09:40 +00:00
|
|
|
Fallout4NextGen_v7 = 7,
|
|
|
|
Fallout4NextGen_v8 = 8,
|
2024-04-26 07:30:42 +00:00
|
|
|
};
|
2023-03-03 12:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|