Huge stuff. camera, input manager (mouse + keyboard), can move around scene now

This commit is contained in:
2026-05-04 00:41:34 -04:00
parent 9a8e618bbb
commit 3c756d6230
17 changed files with 624 additions and 119 deletions

22
src/ModelManager.h Normal file
View File

@@ -0,0 +1,22 @@
//
// 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 ModelManager
{
public:
static std::unordered_map<std::string, std::shared_ptr<Model>> models;
static std::shared_ptr<Model> load_from_file(std::string_view _path, bool zUp = false);
};
#endif //B_ENGINE_MODELLOADER_H