feat(net): handle get version proof

This commit is contained in:
fallenoak 2023-01-09 07:49:49 -06:00 committed by GitHub
parent 59a0883529
commit 85a9f8bde8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 33 additions and 4 deletions

View 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);
}