20 lines
260 B
C++
20 lines
260 B
C++
|
#ifndef MODEL_HPP
|
||
|
#define MODEL_HPP
|
||
|
|
||
|
#include <vector>
|
||
|
#include <modelpart.hpp>
|
||
|
#include <cv.hpp>
|
||
|
|
||
|
class Model {
|
||
|
std::vector<ModelPart> parts;
|
||
|
|
||
|
public:
|
||
|
Model(const char* path);
|
||
|
|
||
|
void draw();
|
||
|
|
||
|
void updateTransforms(struct FaceData faceData);
|
||
|
};
|
||
|
|
||
|
#endif
|