You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
265 B
14 lines
265 B
|
4 years ago
|
#pragma once
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
#include <SDL.h>
|
||
|
|
|
||
|
4 years ago
|
#include "mpq/mpq_reader.hpp"
|
||
|
4 years ago
|
|
||
|
|
namespace devilution {
|
||
|
|
|
||
|
|
SDL_RWops *SDL_RWops_FromMpqFile(MpqArchive &mpqArchive, uint32_t fileNumber, const char *filename, bool threadsafe);
|
||
|
|
|
||
|
|
} // namespace devilution
|