diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-06-16 09:51:00 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-06-16 09:51:00 -0400 |
| commit | 66ebed74456f76277597b3b07f3e67cc45388ece (patch) | |
| tree | 5e7d0c429867a294bca78269124954ce0a4823fc /src/vendor-imgui-ext.hpp | |
| parent | c1ad6ceeb301bc1f2a4f850e08587748a6d9107b (diff) | |
pke: update FontRender text (editor: for ui-box)
Diffstat (limited to 'src/vendor-imgui-ext.hpp')
| -rw-r--r-- | src/vendor-imgui-ext.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/vendor-imgui-ext.hpp b/src/vendor-imgui-ext.hpp new file mode 100644 index 0000000..94e4212 --- /dev/null +++ b/src/vendor-imgui-ext.hpp @@ -0,0 +1,13 @@ +#ifndef PKE_VENDOR_IMGUI_EXT_H +#define PKE_VENDOR_IMGUI_EXT_H + +#include "imgui.h" + +namespace ImGui { + +IMGUI_API bool CheckboxFlags(const char* label, long int* flags, long int flags_value); +IMGUI_API bool CheckboxFlags(const char* label, unsigned long int* flags, unsigned long int flags_value); + +} // namespace ImGui + +#endif /* PKE_VENDOR_IMGUI_EXT_H */ |
