#pragma once #include #include "IMeshFileReader.h" class ObjFileReader: public IMeshFileReader { public: ObjFileReader(); ~ObjFileReader() = default; /* Load from the specified file path, returning a mesh or nullptr if failed */ std::shared_ptr loadFromFile(std::string filename); };