Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
ImGuiCore.h
Go to the documentation of this file.
1#ifndef INCLUDE_COREIMGUI_COREIMGUI_H_
2#define INCLUDE_COREIMGUI_COREIMGUI_H_
3
4namespace Core
5{
7{
8 public:
9 static void Update();
10 static void Draw();
11 static void Init();
12 static void Quit();
13
14 private:
15 static void InitImGuiStyle();
16 static void SetImGuiWindowProportions();
17 static bool HandleWindowResize();
18 static void ShowToolBox();
19 static void TB_ProjectSelector(); // ToolBox Functions;
20 static void TB_ResolutionSlider();
21 static void ShowConsole();
22 static void ShowProjectWindow();
23 static void ShowProjectRendered();
24};
25} // namespace Core
26
27#endif // INCLUDE_COREIMGUI_COREIMGUI_H_
Definition ImGuiCore.h:7
static void ShowProjectWindow()
Definition ImGuiCore.cpp:329
static void InitImGuiStyle()
Definition ImGuiCore.cpp:121
static void Draw()
Definition ImGuiCore.cpp:77
static void ShowProjectRendered()
Definition ImGuiCore.cpp:343
static void TB_ProjectSelector()
Definition ImGuiCore.cpp:243
static void ShowToolBox()
Definition ImGuiCore.cpp:226
static void TB_ResolutionSlider()
Definition ImGuiCore.cpp:283
static bool HandleWindowResize()
Definition ImGuiCore.cpp:206
static void SetImGuiWindowProportions()
Definition ImGuiCore.cpp:173
static void Update()
Definition ImGuiCore.cpp:61
static void Init()
Definition ImGuiCore.cpp:19
static void Quit()
Definition ImGuiCore.cpp:52
static void ShowConsole()
Definition ImGuiCore.cpp:297
Definition Console.cpp:4