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