goat3d

diff src/goat3d_impl.h @ 12:be15ba7c5483

reverted accidental change in goat3d_impl.h/goat3d.cc
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 26 Aug 2013 06:08:40 +0300
parents 1f94a2107c64
children 188c697b3b49
line diff
     1.1 --- a/src/goat3d_impl.h	Mon Aug 26 05:42:30 2013 +0300
     1.2 +++ b/src/goat3d_impl.h	Mon Aug 26 06:08:40 2013 +0300
     1.3 @@ -8,7 +8,7 @@
     1.4  #include "light.h"
     1.5  #include "camera.h"
     1.6  #include "material.h"
     1.7 -#include "object.h"
     1.8 +#include "node.h"
     1.9  
    1.10  class Scene {
    1.11  private:
    1.12 @@ -19,7 +19,7 @@
    1.13  	std::vector<Mesh*> meshes;
    1.14  	std::vector<Light*> lights;
    1.15  	std::vector<Camera*> cameras;
    1.16 -	std::vector<Object*> objects;
    1.17 +	std::vector<Node*> nodes;
    1.18  
    1.19  public:
    1.20  	Scene();