
* feat(native_hooks): removed useless bail kick hook * feat(Translations): add button to force update languages * refactor: reorganize GUI for world * refactor: improve exception handler Modified the exception handler to not catch C++ try/catch blocks before those could gracefully catch the error. * chore: debug removed crash test button * chore: removed script exception handler * feat(OrbitalDrone): add translations * feat(VehicleController): add translation keys * feat: added player admin detected translation keys * feat(Views): add cache sub menu
19 lines
355 B
C++
19 lines
355 B
C++
#include "views/view.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void view::world()
|
|
{
|
|
components::sub_title("GUI_TAB_TIME_N_WEATHER"_T);
|
|
{
|
|
view::time_and_weather();
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
components::sub_title("GUI_TAB_WATER"_T);
|
|
{
|
|
components::command_checkbox<"partwater">();
|
|
}
|
|
}
|
|
} |