| 63 | } |
| 64 | |
| 65 | bool Drawer::radio_button(const char *caption, int32_t *selectedOption, const int32_t elementOption) |
| 66 | { |
| 67 | bool res = ImGui::RadioButton(caption, selectedOption, elementOption); |
| 68 | if (res) |
| 69 | { |
| 70 | dirty = true; |
| 71 | } |
| 72 | |
| 73 | return res; |
| 74 | } |
| 75 | |
| 76 | bool Drawer::input_float(const char *caption, float *value, float step, const char *precision) |
| 77 | { |
no outgoing calls
no test coverage detected