Files
b_engine/src/ModelLoader.h

20 lines
304 B
C
Raw Normal View History

//
// Created by lbmas on 4/29/2026.
//
#ifndef B_ENGINE_MODELLOADER_H
#define B_ENGINE_MODELLOADER_H
#include <memory>
#include <string_view>
#include "Model.h"
class ModelLoader
{
public:
static std::shared_ptr<Model> load_from_file(std::string_view _path);
};
#endif //B_ENGINE_MODELLOADER_H