diff options
Diffstat (limited to 'src/map/grfio.hpp')
-rw-r--r-- | src/map/grfio.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/map/grfio.hpp b/src/map/grfio.hpp new file mode 100644 index 0000000..fd7b871 --- /dev/null +++ b/src/map/grfio.hpp @@ -0,0 +1,15 @@ +#ifndef GRFIO_HPP +#define GRFIO_HPP + +#include <cstdint> + +#include <vector> + +#include "../common/const_array.hpp" + +/// Load a resource into memory, subject to data/resnametable.txt. +/// Normally, resourcename is xxx-y.gat and the file is xxx-y.wlk. +/// Currently there is exactly one .wlk per .gat, but multiples are fine. +std::vector<uint8_t> grfio_reads(const_string resourcename); + +#endif // GRFIO_HPP |