mirror of
https://github.com/iaddis/metalnes.git
synced 2025-04-02 10:31:52 -04:00
20 lines
447 B
C++
20 lines
447 B
C++
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include "render/context.h"
|
|
|
|
#include "../external/imgui/imgui.h"
|
|
#include "../external/imgui/imgui_internal.h"
|
|
#include "Platform/keycode.h"
|
|
|
|
|
|
|
|
extern void ImGuiSupport_Init(render::ContextPtr context, std::string assetDir, std::string userDir);
|
|
extern void ImGuiSupport_Shutdown();
|
|
extern void ImGuiSupport_NewFrame();
|
|
extern void ImGuiSupport_Render();
|
|
|
|
|