feat(Handling): Added online profile getting

This commit is contained in:
Yimura
2021-08-17 16:56:41 +02:00
parent 117ceaa2cd
commit c954ef76cb
15 changed files with 1463 additions and 28 deletions

View File

@ -0,0 +1,13 @@
#include "api/api.hpp"
#include "backend/looped/looped.hpp"
namespace big
{
void looped::api_login_session()
{
if (g_local_player == nullptr || api::util::signed_in())
return;
api::auth::create_session();
}
}