22 lines
297 B
C++
22 lines
297 B
C++
#ifndef __LOADOBJ_H
|
|
#define __LOADOBJ_H
|
|
|
|
#include <cstdlib>
|
|
#include "modelloader.h"
|
|
#include "model.h"
|
|
#include "../extstring.h"
|
|
|
|
namespace segl {
|
|
|
|
class LoadOBJ : public Modelloader {
|
|
private:
|
|
|
|
public:
|
|
LoadOBJ(std::string _filename);
|
|
bool load(Model *m);
|
|
};
|
|
|
|
} // namespace segl
|
|
|
|
#endif
|