1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/components/bsa/ba2file.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
410 B
C++
Raw Normal View History

#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>
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