goat3d
diff src/goat3d_impl.h @ 10:1f94a2107c64
merged with win32 stuff
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 26 Aug 2013 05:30:40 +0300 |
parents | 04bb114fcf05 |
children | be15ba7c5483 |
line diff
1.1 --- a/src/goat3d_impl.h Fri Aug 23 06:36:47 2013 +0300 1.2 +++ b/src/goat3d_impl.h Mon Aug 26 05:30: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 "node.h" 1.8 +#include "object.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<Node*> nodes; 1.17 + std::vector<Object*> objects; 1.18 1.19 public: 1.20 Scene();