| 775 | } |
| 776 | |
| 777 | bool InputInt(const char* label, int* v, int step, int step_fast, Slice* flags, int flagCount) { |
| 778 | return ImGui::InputInt(label, v, step, step_fast, InputTextFlags(flags, flagCount)); |
| 779 | } |
| 780 | |
| 781 | bool InputInt2(const char* label, int* v1, int* v2, Slice* flags, int flagCount) { |
| 782 | int ints[2] = {*v1, *v2}; |
no test coverage detected