13 lines
194 B
C++
13 lines
194 B
C++
|
|
|
||
|
|
#ifndef LOADER_B3D_H
|
||
|
|
#define LOADER_B3D_H
|
||
|
|
|
||
|
|
#include "meshloader.h"
|
||
|
|
|
||
|
|
class Loader_B3D : public MeshLoader{
|
||
|
|
public:
|
||
|
|
MeshModel *load( const string &f,const Transform &conv,int hint );
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|