| 370 | } |
| 371 | |
| 372 | float utils::CenterHorizontal() |
| 373 | { |
| 374 | auto windowWidth = ImGui::GetWindowSize().x; |
| 375 | auto itemWidth = ImGui::GetItemRectSize().x; |
| 376 | float PosX = ((windowWidth - itemWidth) * 0.5f); |
| 377 | return PosX; |
| 378 | } |
nothing calls this directly
no outgoing calls
no test coverage detected