aboutsummaryrefslogtreecommitdiff
path: root/include/model_loader/ObjModelLoader.hpp
blob: 3cdeb7db70352aeef9768ceed9d7b6770b02e470 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "../Triangle.hpp"
#include <vector>

namespace amalgine {
    class ObjModelLoader {
    public:
        static void load_from_file(const char *filepath, std::vector<Triangle3D> &triangles);
    };
}