mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-08 03:42:35 +01:00
25f28dbb42
- move FileHandle into a separate header - Implement FileIndex, a system to normalize filenames and sources
14 lines
210 B
C++
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
|