blob: 0c80694e5da6e0c1d29a3c2c836dbe9a7f64469a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
namespace imutils
{
void button(const char* title, const ImVec2& size, void (*callback)(void));
void button(const char* title, void (*callback)(void));
} // namespace imutils
namespace imutils
{
bool selectable_button(const char* label, const ImVec2& size, bool value);
bool toggle_button(const char* label, const ImVec2& size, bool& value);
bool toggle_button(const char* label, bool& value);
} // namespace imutils
|