mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
13 lines
392 B
C++
13 lines
392 B
C++
|
|
#include "net/login/LoginResponse.hpp"
|
||
|
|
|
||
|
|
void LoginResponse::UpdateLoginStatus(LOGIN_STATE state, LOGIN_RESULT result, const char* a4, uint16_t a5) {
|
||
|
|
this->m_loginState = state;
|
||
|
|
this->m_loginResult = result;
|
||
|
|
|
||
|
|
// TODO string lookups
|
||
|
|
const char* stateStr = nullptr;
|
||
|
|
const char* resultStr = nullptr;
|
||
|
|
|
||
|
|
this->LoginServerStatus(state, result, a4, stateStr, resultStr, a5);
|
||
|
|
}
|