feat: add ui renderer

This commit is contained in:
2026-03-21 11:19:23 +08:00
parent 3916a72ca3
commit c62f2baf7c
12 changed files with 204 additions and 36 deletions

View File

@@ -20,15 +20,16 @@ public:
private:
Camera m_camera;
TextureManager m_texture_manager;
World m_world;
Renderer m_renderer{m_camera, m_world};
Renderer m_renderer{m_camera, m_world, m_texture_manager};
Window m_window{m_renderer};
GLuint m_texture_array;
TextureManager m_texture_manager;
void init();