23 lines
417 B
C++
23 lines
417 B
C++
//
|
|
// 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"
|
|
#include "uuid.h"
|
|
|
|
class ModelManager
|
|
{
|
|
public:
|
|
static std::unordered_map<uuids::uuid, std::unique_ptr<Model>> models;
|
|
|
|
static std::unique_ptr<Model> load_from_file(std::string_view _path, bool zUp = false);
|
|
};
|
|
|
|
|
|
#endif //B_ENGINE_MODELLOADER_H
|