1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-08 03:42:35 +01:00
openrw/rwengine/include/loaders/LoaderGXT.hpp
Daniel Evans 25f28dbb42 New File handling implementation
- move FileHandle into a separate header
- Implement FileIndex, a system to normalize filenames and sources
2015-02-26 03:57:28 +00:00

14 lines
210 B
C++

#pragma once
#ifndef _LOADERGXT_HPP_
#define _LOADERGXT_HPP_
#include <core/FileHandle.hpp>
#include <data/GameTexts.hpp>
class LoaderGXT
{
public:
void load( GameTexts& texts, FileHandle& file );
};
#endif