aboutsummaryrefslogtreecommitdiff
path: root/vendor/rlImGui-main/examples/asset_browser/imgui_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rlImGui-main/examples/asset_browser/imgui_utils.h')
-rw-r--r--vendor/rlImGui-main/examples/asset_browser/imgui_utils.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/rlImGui-main/examples/asset_browser/imgui_utils.h b/vendor/rlImGui-main/examples/asset_browser/imgui_utils.h
new file mode 100644
index 0000000..124ff8b
--- /dev/null
+++ b/vendor/rlImGui-main/examples/asset_browser/imgui_utils.h
@@ -0,0 +1,19 @@
+/*******************************************************************************************
+*
+* raylib-extras [ImGui] example - asset browser
+*
+* This is a more complex ImGui Integration
+* It shows how to build windows on top of 2d and 3d views using a render texture
+*
+* Copyright (c) 2024 Jeffery Myers
+*
+********************************************************************************************/
+
+#pragma once
+
+#include <string>
+
+namespace ImGuiUtils
+{
+ void TextWithEllipsis(const char* string, float maxWidth, bool useWordBoundaries = false, float aSpacing = 0);
+} \ No newline at end of file