Forward declare ImGui::IsKeyPressed

This commit is contained in:
blankie 2023-02-24 18:26:48 +07:00
parent b8784cc26f
commit fe2e237a70
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#pragma once
#include <imgui/imgui.h>
#include "../misc.h"
namespace ImGui { bool IsKeyPressed(ImGuiKeyChord key_chord, bool repeat); }; // forward declaration from ../misc.h
void ok_buttons_fragment(bool* p_open, auto ok, auto apply);