fixing SDLManager

This commit is contained in:
2024-09-20 17:02:55 +02:00
parent 092e5acd9b
commit 8348f9ce7a
5 changed files with 21 additions and 19 deletions

View File

@@ -47,12 +47,12 @@ namespace mlx
~Application();
private:
RenderCore m_render_core;
FpsManager m_fps;
Inputs m_in;
ImageRegistry m_image_registry;
std::vector<std::unique_ptr<GraphicsSupport>> m_graphics;
std::function<int(Handle)> f_loop_hook;
std::unique_ptr<RenderCore> p_render_core;
Handle p_param = nullptr;
};
}