2021-07-25 22:24:48 +02:00
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "imgui.h"
|
|
|
|
|
|
|
|
namespace big
|
|
|
|
{
|
|
|
|
class tab_handling
|
|
|
|
{
|
|
|
|
public:
|
2021-08-04 21:33:37 +02:00
|
|
|
static void tab_brakes();
|
|
|
|
static void tab_gearing();
|
|
|
|
static void tab_general();
|
|
|
|
static void tab_other();
|
|
|
|
static void tab_rollbars();
|
|
|
|
static void tab_roll_centre_height();
|
2021-07-25 22:24:48 +02:00
|
|
|
static void tab_suspension();
|
|
|
|
static void tab_steering();
|
|
|
|
static void tab_traction();
|
|
|
|
static void tab_transmission();
|
|
|
|
};
|
2021-08-17 16:56:41 +02:00
|
|
|
|
|
|
|
class modal_handling
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void modal_save_handling();
|
|
|
|
};
|
2021-07-25 22:24:48 +02:00
|
|
|
}
|