mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 01:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			425 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			425 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,
 | 
						|
        Fallout4NextGen_v7 = 7,
 | 
						|
        Fallout4NextGen_v8 = 8,
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |