2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-21 11:55:38 +00:00
2024-09-27 21:20:02 +02:00

12 lines
158 B
C++

#pragma once
#include "Image/Texture.h"
#include <istream>
#include <memory>
namespace dds
{
std::unique_ptr<Texture> LoadDds(std::istream& stream);
}