basic 3D zombie model

This commit is contained in:
2026-01-03 23:33:26 +01:00
parent 19ebe7b64f
commit 45c9e5180f
9 changed files with 1887 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include <td/render/loader/GLLoader.h>
#include <memory>
#include <string>
#include <vector>
namespace td {
struct Model {
std::vector<std::unique_ptr<GL::VertexArray>> m_Vaos;
};
namespace ModelLoader {
Model LoadModel(const std::string& fileName);
}
}