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