]> git.localhorst.tv Git - blank.git/blobdiff - src/graphics/SkyBox.hpp
some skybox experiments
[blank.git] / src / graphics / SkyBox.hpp
diff --git a/src/graphics/SkyBox.hpp b/src/graphics/SkyBox.hpp
new file mode 100644 (file)
index 0000000..1254fe2
--- /dev/null
@@ -0,0 +1,27 @@
+#ifndef BLANK_GRAPHICS_SKYBOX_HPP_
+#define BLANK_GRAPHICS_SKYBOX_HPP_
+
+#include "CubeMap.hpp"
+#include "../model/SkyBoxModel.hpp"
+
+
+namespace blank {
+
+class Viewport;
+
+class SkyBox {
+
+public:
+       explicit SkyBox(CubeMap &&);
+
+       void Render(Viewport &) noexcept;
+
+private:
+       CubeMap texture;
+       SkyBoxModel model;
+
+};
+
+}
+
+#endif