Obj-loader: change include brackets.

This commit is contained in:
Kim Kulling
2015-07-10 01:21:10 +02:00
parent 891c17ee7b
commit 14a849b398
8 changed files with 35 additions and 43 deletions

View File

@@ -43,21 +43,20 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <vector>
#include <string>
#include <map>
#include "../include/assimp/vector2.h"
#include "../include/assimp/vector3.h"
#include "../include/assimp/mesh.h"
#include <assimp/vector2.h>
#include <assimp/vector3.h>
#include <assimp/mesh.h>
namespace Assimp
{
namespace Assimp {
namespace ObjFile
{
struct Model;
struct Object;
struct Material;
struct Point3;
struct Point2;
namespace ObjFile {
struct Model;
struct Object;
struct Material;
struct Point3;
struct Point2;
}
class ObjFileImporter;
class IOSystem;