#pragma once #include "../Triangle.hpp" #include "../Vec.hpp" #include namespace amalgine { class Image; class ObjModelLoader { public: static void load_from_file(const char *filepath, std::vector &triangles, std::vector &texture_coords, Image **image); }; }