Add ImGui

This commit is contained in:
2026-02-13 02:22:42 +03:00
parent b044c8d1a5
commit fcba7d9035
282 changed files with 124080 additions and 13 deletions

View File

@@ -3,6 +3,7 @@
#include <vector>
#include "boundingbox.h"
#include "render_shared.h"
#include <glm/glm.hpp>
@@ -35,12 +36,12 @@ public:
void Draw(const glm::mat4& model, bool isTransparent = false);
//BoundingBox GetBoundingBox() { return m_boundingBox; }
const BoundingBox& GetBoundingBox() { return m_boundingBox; }
private:
std::vector<StaticMeshVertex> m_Vertices;
ModelData_t m_data;
//BoundingBox m_boundingBox;
BoundingBox m_boundingBox;
Texture2D* m_AlbedoTexture;
};