mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
19 lines
367 B
C++
19 lines
367 B
C++
#pragma once
|
|
|
|
#include "Utils/FileAPI.h"
|
|
#include "Utils/MemoryManager.h"
|
|
#include "Image/Texture.h"
|
|
|
|
class IwiLoader
|
|
{
|
|
MemoryManager* m_memory_manager;
|
|
|
|
const IImageFormat* GetFormat27(int8_t format);
|
|
Texture* LoadIwi27(FileAPI::IFile* file);
|
|
|
|
public:
|
|
explicit IwiLoader(MemoryManager* memoryManager);
|
|
|
|
Texture* LoadIwi(FileAPI::IFile* file);
|
|
};
|