1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-08 11:52:57 +01:00
openrw/rwengine/include/loaders/LoaderGXT.hpp

14 lines
210 B
C++
Raw Normal View History

#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