| 125 | } |
| 126 | |
| 127 | bool Drawer::button(const char *caption) |
| 128 | { |
| 129 | bool res = ImGui::Button(caption); |
| 130 | if (res) |
| 131 | { |
| 132 | dirty = true; |
| 133 | }; |
| 134 | return res; |
| 135 | } |
| 136 | |
| 137 | void Drawer::text(const char *formatstr, ...) |
| 138 | { |
no outgoing calls
no test coverage detected