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

28
src/render/imguimanager.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef IMGUI_MGR_H
#define IMGUI_MGR_H
#include <imgui.h>
#include "core.h"
class ImGuiManager
{
public:
void Init();
void Shutdown();
void BeginFrame();
void EndFrame();
void PollEvents(SDL_Event* _p_event);
private:
void Draw();
private:
bool m_ready = false;
};
extern ImGuiManager g_ImGuiManager;
#endif // !IMGUI_MGR_H