mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
12 lines
176 B
C++
12 lines
176 B
C++
#pragma once
|
|
|
|
#include "Image/Texture.h"
|
|
|
|
#include <istream>
|
|
#include <memory>
|
|
|
|
namespace iwi
|
|
{
|
|
std::unique_ptr<Texture> LoadIwi(std::istream& stream);
|
|
}; // namespace iwi
|