| 94 | } |
| 95 | |
| 96 | bool Drawer::slider_int(const char *caption, int32_t *value, int32_t min, int32_t max) |
| 97 | { |
| 98 | bool res = ImGui::SliderInt(caption, value, min, max); |
| 99 | if (res) |
| 100 | { |
| 101 | dirty = true; |
| 102 | }; |
| 103 | return res; |
| 104 | } |
| 105 | |
| 106 | bool Drawer::combo_box(const char *caption, int32_t *itemindex, std::vector<std::string> items) |
| 107 | { |
no outgoing calls
no test coverage detected