#include "views/view.hpp" #include "fiber_pool.hpp" #include "util/session.hpp" namespace big { void view::session() { static uint64_t rid = 0; ImGui::InputScalar("Input RID", ImGuiDataType_U64, &rid); components::button("Join RID", [] { session::join_by_rockstar_id(rid); }); components::sub_title("Session Switcher"); if (ImGui::ListBoxHeader("###session_switch")) { for (const auto& session_type : sessions) { components::selectable(session_type.name, false, [&session_type] { session::join_type(session_type.id); }); } ImGui::EndListBox(); } if (ImGui::TreeNode("Chat")) { ImGui::Checkbox("Disable Filter", &g->session.disable_chat_filter); ImGui::TreePop(); } } }