Dicewars-Siedler/src/engine/renderer/loader/OBJLoader.h
2026-02-07 19:15:40 +01:00

22 lines
346 B
C++

//
// Created by sebastian on 07.02.26.
//
#ifndef OBJLOADER_H
#define OBJLOADER_H
#include <memory>
#include "Loader.h"
#include "../model/TexturedModel.h"
class OBJLoader {
public:
static std::shared_ptr<TexturedModel> loadModel(const std::string &modelPath, const std::string &texturePath, Loader &loader);
};
#endif //OBJLOADER_H