mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
17 lines
267 B
C++
17 lines
267 B
C++
#pragma once
|
|
|
|
#include "Image/Texture.h"
|
|
#include "Utils/MemoryManager.h"
|
|
|
|
#include <istream>
|
|
|
|
class DdsLoader
|
|
{
|
|
MemoryManager* m_memory_manager;
|
|
|
|
public:
|
|
explicit DdsLoader(MemoryManager* memoryManager);
|
|
|
|
Texture* LoadDds(std::istream& stream) const;
|
|
};
|