mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-10 12:52:39 +01:00
14 lines
209 B
C++
14 lines
209 B
C++
#pragma once
|
|
#ifndef _LOADERGXT_HPP_
|
|
#define _LOADERGXT_HPP_
|
|
#include <engine/RWTypes.hpp>
|
|
#include <data/GameTexts.hpp>
|
|
|
|
class LoaderGXT
|
|
{
|
|
public:
|
|
void load( GameTexts& texts, FileHandle& file );
|
|
};
|
|
|
|
#endif
|