Started work on ImGui abstraction for consistent theming across the editor

This commit is contained in:
Antoine Pilote
2023-09-17 23:51:12 -04:00
parent 4138e51c94
commit 7b78845082
4 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
class UIDemoWindow
{
public:
UIDemoWindow() = default;
~UIDemoWindow() = default;
void Draw();
};