Graphics/RenderTechnique: Move viewer to SceneData

Former-commit-id: 6c8b5a00b65649c7a3877a186b51f7240361e801
This commit is contained in:
Lynix
2015-06-13 16:27:12 +02:00
parent 8f797737c6
commit d9c31636b9
25 changed files with 75 additions and 70 deletions

View File

@@ -10,11 +10,13 @@
#include <Nazara/Core/Color.hpp>
class NzAbstractBackground;
class NzAbstractViewer;
struct NzSceneData
{
NzColor ambientColor;
NzAbstractBackground* background;
const NzAbstractBackground* background;
const NzAbstractViewer* viewer;
};
#endif // NAZARA_SCENEDATA_HPP