summaryrefslogtreecommitdiff
path: root/Runtime/IMGUI/GUIToggle.h
blob: 3f9d61920d9685ec8ce977263fc1b3c1e70223f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef GUITOGGLE_H
#define GUITOGGLE_H

#include "Runtime/Math/Rect.h"

struct GUIState;
struct GUIContent;
class GUIStyle;

namespace IMGUI
{
	bool GUIToggle (GUIState &state, const Rectf &position, bool value, GUIContent &content, GUIStyle &style, int id);
	bool GUIToggle (GUIState &state, const Rectf &position, bool value, GUIContent &content, GUIStyle &style);
}

#endif