Files
BlitzNext/Runtime/blitz3d/loader_3ds.hpp
T
Michael Fabian 'Xaymar' Dirks 2196cb8419 runtime: Formatting
2019-01-18 17:04:17 +01:00

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