您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
297 B

#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