Files
BlitzNext/blitz3d/loader_3ds.h
T

12 lines
193 B
C++
Raw Normal View History

2014-01-31 08:23:00 +13:00
#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