mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(net): handle get version proof
This commit is contained in:
parent
59a0883529
commit
85a9f8bde8
5 changed files with 33 additions and 4 deletions
12
src/net/login/LoginResponse.cpp
Normal file
12
src/net/login/LoginResponse.cpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue