mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-23 09:02:38 +08:00
15 lines
329 B
C++
15 lines
329 B
C++
#include "current_profile_tabs.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void tab_current_profile::tab_steering()
|
|
{
|
|
if (ImGui::BeginTabItem("Steering"))
|
|
{
|
|
ImGui::Text("Steering Lock (degrees)");
|
|
ImGui::SliderAngle("##steering lock", &g_local_player->m_vehicle->m_handling->m_steering_lock, -90.f, 90.f);
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
}
|
|
} |