TazGraph Project v0.1.0
Loading...
Searching...
No Matches
ImGuiInterface.h
1#pragma once
2
3#include "../../pch.h"
4
5
6namespace ImGuiInterface {
7
8 void BeginRender();
9
10 void RenderUI();
11
12 void EndRender();
13
14 bool isMouseOnWidget(const std::string& widgetName);
15
16 void StyleColorsCustom(ImGuiStyle* dst);
17};