#pragma once #include #include #include "SimpleShader.h" class Material { public: Material( DirectX::XMFLOAT3 _tint, float _roughness, std::shared_ptr _vertexShader, std::shared_ptr _pixelShader); ~Material(); DirectX::XMFLOAT3 GetTint(); float GetRoughness(); std::shared_ptr GetVertexShader(); std::shared_ptr GetPixelShader(); void SetTint(DirectX::XMFLOAT3 _tint); void SetRoughness(float _roughness); void SetVertexShader(std::shared_ptr _vertexShader); void SetPixelShader(std::shared_ptr _pixelShader); private: DirectX::XMFLOAT3 tint; float roughness; std::shared_ptr vertexShader; std::shared_ptr pixelShader; };