1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 03:19:44 +00:00

Some cleanup on includes

This commit is contained in:
Cédric Mocquillon 2023-03-06 21:26:20 +01:00
parent 64ce6eb6bc
commit 7f936ad18f
2 changed files with 5 additions and 6 deletions

View File

@ -3,9 +3,11 @@
#include <list>
#include <map>
#include <optional>
#include <string>
#include <vector>
#include <components/bsa/bsa_file.hpp>
#include <filesystem>
namespace Bsa
{
@ -23,17 +25,13 @@ namespace Bsa
struct FileRecord
{
// DX10 archive format
uint8_t unknownTex = 0;
// ChunkHeaderSize: Word;
uint16_t height = 0;
uint16_t width = 0;
uint8_t numMips = 0;
uint8_t DXGIFormat = 0;
uint16_t cubeMaps = 0;
std::vector<TextureChunkRecord> texturesChunks;
//
// std::string DXGIFormatName() const;
};
uint32_t mVersion{ 0u };

View File

@ -3,9 +3,10 @@
#include <list>
#include <map>
#include <string>
#include <vector>
#include <components/bsa/bsa_file.hpp>
#include <filesystem>
namespace Bsa
{