Dicewars-Siedler/src/engine/renderer/loader/OBJLoader.h
Sebastian Böckelmann b71aa63b71
All checks were successful
Tests / test (push) Successful in 2m37s
ADD: Async Asset Loading, closes #18
2026-04-21 08:05:57 +02:00

24 lines
432 B
C++

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