diff options
Diffstat (limited to 'Runtime/IMGUI/GUILabel.h')
-rw-r--r-- | Runtime/IMGUI/GUILabel.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Runtime/IMGUI/GUILabel.h b/Runtime/IMGUI/GUILabel.h new file mode 100644 index 0000000..61b8d56 --- /dev/null +++ b/Runtime/IMGUI/GUILabel.h @@ -0,0 +1,15 @@ +#ifndef GUILABEL_H +#define GUILABEL_H + +#include "Runtime/Math/Rect.h" + +struct GUIState; +struct GUIContent; +class GUIStyle; + +namespace IMGUI +{ + void GUILabel (GUIState &state, const Rectf &position, GUIContent &content, GUIStyle &style); +} + +#endif |