Files
BlitzNext/Runtime/blitz3d/loader_x.hpp
T
Michael Fabian 'Xaymar' Dirks 24788185aa runtime: CMake-ify
2019-01-18 15:55:06 +01:00

13 lines
190 B
C++

#ifndef LOADER_X_H
#define LOADER_X_H
#include "meshloader.hpp"
class Loader_X : public MeshLoader{
public:
MeshModel *load( const string &f,const Transform &conv,int hint );
};
#endif