#pragma once #include "Bindable.h" #include "Logger.h" class Sampler : public Bindable { public: Sampler(Graphics& gfx); void Bind(Graphics& gfx, Logger& logger) noexcept override; protected: Microsoft::WRL::ComPtr pSampler; };