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

19
src/gui/input.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef YAZE_APPLICATION_CORE_INPUT_H
#define YAZE_APPLICATION_CORE_INPUT_H
#include <imgui/imgui.h>
#include <imgui/imgui_internal.h>
#include <cstddef>
#include <cstdint>
namespace yaze {
namespace gui {
IMGUI_API bool InputHex(const char* label, int* data);
IMGUI_API bool InputHexShort(const char* label, int* data);
} // namespace Gui
} // namespace yaze
#endif