#pragma once #include #include #include #include "Mesh.h" #include "SimpleShader.h" #include "Camera.h" class Sky { public: Sky( std::shared_ptr _mesh, std::shared_ptr _vertexShader, std::shared_ptr _pixelShader, Microsoft::WRL::ComPtr _cubemap, Microsoft::WRL::ComPtr _sampler, Microsoft::WRL::ComPtr _device); ~Sky(); void Draw( Microsoft::WRL::ComPtr _context, std::shared_ptr _camera); private: Microsoft::WRL::ComPtr sampler; Microsoft::WRL::ComPtr depthState; Microsoft::WRL::ComPtr rasterizerState; Microsoft::WRL::ComPtr cubemap; std::shared_ptr mesh; std::shared_ptr vertexShader; std::shared_ptr pixelShader; };