#pragma once #include #include #include #include "Mesh.h" #include "SimpleShader.h" #include "Camera.h" class Sky { public: Sky( std::shared_ptr _mesh, Microsoft::WRL::ComPtr _cubemap, Microsoft::WRL::ComPtr _sampler, Microsoft::WRL::ComPtr _device); ~Sky(); void Draw( Microsoft::WRL::ComPtr _context, Camera* _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; };