feat(Api): Implemented SCUI Api (#712)
* feat(Api): Async joining via rid joiner * feat(cmake): disable cpr tests Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
This commit is contained in:
@ -16,11 +16,18 @@ namespace big
|
||||
{
|
||||
static uint64_t rid = 0;
|
||||
ImGui::InputScalar("Input RID", ImGuiDataType_U64, &rid);
|
||||
components::button("Join RID", []
|
||||
components::button("Join by RID", []
|
||||
{
|
||||
session::join_by_rockstar_id(rid);
|
||||
});
|
||||
|
||||
static char username[20];
|
||||
ImGui::InputText("Input Username", username, sizeof(username));
|
||||
if (components::button("Join by Username"))
|
||||
{
|
||||
session::join_by_username(username);
|
||||
};
|
||||
|
||||
static char base64[500]{};
|
||||
ImGui::InputText("Session Info", base64, sizeof(base64));
|
||||
components::button("Join Session Info", []
|
||||
|
Reference in New Issue
Block a user