2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-26 06:22:07 +00:00

refactor: extract image code into single component

This commit is contained in:
Jan
2024-09-27 21:16:29 +02:00
parent a2d70c17ba
commit 2dccd423af
46 changed files with 66 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include "Image/Texture.h"
#include <istream>
namespace dds
{
std::unique_ptr<Texture> LoadDds(std::istream& stream);
}