created gui directory and namespace
This commit is contained in:
19
src/gui/input.h
Normal file
19
src/gui/input.h
Normal 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
|
||||
Reference in New Issue
Block a user