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