1 2 3 4 5 6 7 8 9 10 11 12 13 14 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