This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YimMenu/BigBaseV2/src/gui/handling/current_profile/current_profile_tabs.hpp

26 lines
443 B
C++
Raw Normal View History

#pragma once
#include "common.hpp"
#include "imgui.h"
namespace big
{
namespace tab_current_profile
{
void tab_brakes();
void tab_gearing();
void tab_general();
void tab_other();
void tab_rollbars();
void tab_roll_centre_height();
void tab_suspension();
void tab_steering();
void tab_traction();
void tab_transmission();
}
namespace modal_handling
{
void modal_save_handling();
void modal_update_handling();
}
2021-07-25 22:24:48 +02:00
}