| 672 | } |
| 673 | |
| 674 | bool GuiImpl::addButton(const char label[], bool sameLine) |
| 675 | { |
| 676 | if (sameLine) |
| 677 | ImGui::SameLine(); |
| 678 | return ImGui::Button(label); |
| 679 | } |
| 680 | |
| 681 | bool GuiImpl::addRadioButtons(const Gui::RadioButtonGroup& buttons, uint32_t& activeID) |
| 682 | { |