X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FEnvironment%2FSkybox.hpp;h=e22341feae789c088e3a940cb23eb09eb608239c;hb=6a8cb464330e92163c8feaf101b8b5837c973bba;hp=1a9d36a2fec5c66cfeffde420368bfda13167f8a;hpb=ed3662c0852c4312a612b4fc35bd03aba8d13db7;p=lugaru.git diff --git a/Source/Environment/Skybox.hpp b/Source/Environment/Skybox.hpp index 1a9d36a..e22341f 100644 --- a/Source/Environment/Skybox.hpp +++ b/Source/Environment/Skybox.hpp @@ -1,6 +1,6 @@ /* Copyright (C) 2003, 2010 - Wolfire Games -Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file) +Copyright (C) 2010-2017 - Lugaru contributors (see AUTHORS file) This file is part of Lugaru. @@ -21,10 +21,10 @@ along with Lugaru. If not, see . #ifndef _SKYBOX_HPP_ #define _SKYBOX_HPP_ -#include "Graphic/gamegl.hpp" #include "Graphic/Texture.hpp" -#include "Math/Quaternions.hpp" -#include "Math/Quaternions.hpp" +#include "Graphic/gamegl.hpp" +#include "Math/XYZ.hpp" +#include "Math/XYZ.hpp" #include "Utils/ImageIO.hpp" class SkyBox @@ -33,11 +33,10 @@ public: Texture front, left, back, right, up, down; void load(const std::string& ffront, const std::string& fleft, const std::string& fback, - const std::string& fright, const std::string& fup, const std::string& fdown); + const std::string& fright, const std::string& fup, const std::string& fdown); void draw(); SkyBox() {} - ~SkyBox(); }; #endif