created gui directory and namespace

This commit is contained in:
Justin Scofield
2022-06-20 13:12:00 -04:00
parent 2fbc58ad03
commit b08dd34a08
10 changed files with 17 additions and 24 deletions

15
src/gui/style.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef YAZE_APPLICATION_CORE_STYLE_H
#define YAZE_APPLICATION_CORE_STYLE_H
#include <imgui/imgui.h>
#include <imgui/imgui_internal.h>
namespace yaze {
namespace gui {
void ColorsYaze();
} // namespace gui
} // namespace yaze
#endif