#pragma once #include #include namespace yave { class YaveGrPipeline { public: YaveGrPipeline(const std::string &vertFilepath, const std::string &fragFilepath); private: static std::vector readFile(const std::string &filepath); void createGraphicsPipeline(const std::string &vertFilepath, const std::string &fragFilepath); }; } // namespace yave