1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-20 09:21:44 +02:00
openrw/rwengine/include/loaders/LoaderGXT.hpp

14 lines
214 B
C++

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