Rename folders
This commit is contained in:
parent
9b34105e80
commit
008b4ef12e
17 changed files with 9 additions and 9 deletions
|
@ -1,10 +1,10 @@
|
|||
#include "../src/store.hpp"
|
||||
#include "../src/scene.hpp"
|
||||
#include "../src/camera.hpp"
|
||||
#include "../src/light/sun.hpp"
|
||||
#include "../src/model/raw.hpp"
|
||||
#include "../src/model/static.hpp"
|
||||
#include "../src/object/with_model.hpp"
|
||||
#include "../src/lights/sun.hpp"
|
||||
#include "../src/models/raw.hpp"
|
||||
#include "../src/models/static.hpp"
|
||||
#include "../src/objects/with_model.hpp"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#define _MODEL_RAW_HPP_
|
||||
|
||||
#include "model.hpp"
|
||||
#include "../mesh/mesh.hpp"
|
||||
#include "../meshes/mesh.hpp"
|
||||
#include "../executable.hpp"
|
||||
|
||||
namespace Models
|
|
@ -2,7 +2,7 @@
|
|||
#define _MODEL_STATIC_HPP_
|
||||
|
||||
#include "model.hpp"
|
||||
#include "../mesh/textured.hpp"
|
||||
#include "../meshes/textured.hpp"
|
||||
#include "../material.hpp"
|
||||
#include "../executable.hpp"
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
#define _OBJECT_WITH_MODEL_HPP_
|
||||
|
||||
#include "object.hpp"
|
||||
#include "../model/model.hpp"
|
||||
#include "../models/model.hpp"
|
||||
|
||||
struct Scene;
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef _SCENE_HPP_
|
||||
#define _SCENE_HPP_
|
||||
|
||||
#include "object/object.hpp"
|
||||
#include "light/sun.hpp"
|
||||
#include "objects/object.hpp"
|
||||
#include "lights/sun.hpp"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
|
Reference in a new issue