started on assimp importing and texture stuff

This commit is contained in:
2026-05-01 20:06:54 -05:00
parent cb1d8f753d
commit f9010eea81
20 changed files with 8673 additions and 42 deletions

20
src/ModelLoader.h Normal file
View File

@@ -0,0 +1,20 @@
//
// 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