blob: 29b2404e6bcc8cfeffc232de657fda568a7499ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef GUIBUTTON_H
#define GUIBUTTON_H
#include "Runtime/Math/Rect.h"
struct GUIState;
struct GUIContent;
class GUIStyle;
namespace IMGUI
{
bool GUIButton (GUIState &state, const Rectf &position, GUIContent &content, GUIStyle &style, int id);
bool GUIButton (GUIState &state, const Rectf &position, GUIContent &content, GUIStyle &style);
}
#endif
|