#pragma once #include "Triangle.hpp" #include "Vec.hpp" #include namespace amalgine { class Image; // A model loader for .a3d files class ModelLoader { public: static bool load_from_file(const char *filepath, std::vector &triangles, std::vector &texture_coords, Image **image); }; }