summaryrefslogtreecommitdiff
path: root/Runtime/IMGUI/GUILabel.h
blob: 61b8d5636a40bd5c5701f3ff8ae0bf3caa73f8ff (plain)
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