#pragma once #include "Bindable.h" #include class PixelShader : public Bindable { public: PixelShader(Graphics& gfx, const std::wstring& path); void Bind(Graphics& gfx, Logger& logger) noexcept override; protected: Microsoft::WRL::ComPtr pPixelShader; };