| 551 | } |
| 552 | |
| 553 | void SetNextWindowPosCenter(String setCond, const Vec2& pivot) { |
| 554 | ImGui::SetNextWindowPos(Vec2(ImGui::GetIO().DisplaySize) * 0.5f, SetCondFlag(setCond), pivot); |
| 555 | } |
| 556 | |
| 557 | void SetNextWindowPosCenter(uint32_t setCond, const Vec2& pivot) { |
| 558 | ImGui::SetNextWindowPos(Vec2(ImGui::GetIO().DisplaySize) * 0.5f, setCond, pivot); |
no test coverage detected