feat(glue): handle ChangeRealm script function

This commit is contained in:
fallenoak 2023-02-18 16:32:27 -06:00 committed by GitHub
parent dd322572c7
commit 009225be3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 92 additions and 1 deletions

View file

@ -139,6 +139,10 @@ void ClientServices::Logon(const char* accountName, const char* password) {
ClientServices::s_loginObj->Logon(nullptr, nullptr);
}
void ClientServices::SelectRealm(const char* realmName) {
// TODO
}
void ClientServices::SetAccountName(const char* accountName) {
SStrCopy(ClientServices::s_accountName, accountName, sizeof(ClientServices::s_accountName));
}