Step 187: in-editor help panel

This commit is contained in:
Bill
2026-02-09 22:56:41 -07:00
parent 79826f98d4
commit ecd479cc86
9 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include "../EditorState.h"
static void renderHelpPanelWindow(EditorState& state) {
if (!state.ui.showHelpPanel) return;
ImGui::Begin("Documentation", &state.ui.showHelpPanel);
ImGui::PushFont(state.uiFont);
renderHelpPanel(state.helpPanel, state.workspaceRoot, state.monoFont);
ImGui::PopFont();
ImGui::End();
}