mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
18 lines
292 B
C++
18 lines
292 B
C++
#ifndef __IMPORT_H
|
|
#define __IMPORT_H
|
|
|
|
#include <core/HashTable.h>
|
|
#include "texture.h"
|
|
#include "gfx/nxtexture.h"
|
|
|
|
namespace NxNgc
|
|
{
|
|
|
|
void LoadTextureFile( const char* Filename, Lst::HashTable<Nx::CTexture> * p_texture_table );
|
|
|
|
} // namespace NxNgc
|
|
|
|
|
|
#endif // __IMPORT_H
|
|
|