This commit is contained in:
end 2016-09-29 12:00:08 +02:00
parent 26e1d4fd19
commit aff49c268b
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
#include "polygon_model.hpp" #include "polygon_model.hpp"
#include <iostream>
namespace endofthejedi { namespace endofthejedi {
PolygonModel::PolygonModel(const std::string &filename) : m_filename(filename) PolygonModel::PolygonModel(const std::string &filename) : m_filename(filename)
{ {

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include <string> #include <string>
#include <iostream> #include <vector>
#include <assimp/Importer.hpp> // C++ importer interface #include <assimp/Importer.hpp> // C++ importer interface
#include <assimp/scene.h> // Output data structure #include <assimp/scene.h> // Output data structure