mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-21 11:55:38 +00:00
12 lines
158 B
C++
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);
|
|
}
|