mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-16 04:32:29 +00:00
feat(ui): implement script methods for character creation screen
This commit is contained in:
parent
77cb9ed966
commit
b4ff9994e2
11 changed files with 90 additions and 23 deletions
|
|
@ -297,3 +297,7 @@ void RealmConnection::RequestCharacterLogin(uint64_t id) {
|
|||
msg.Finalize();
|
||||
this->Send(&msg);
|
||||
}
|
||||
|
||||
int32_t RealmConnection::GetExpansionLevel() const {
|
||||
return this->m_accountExpansion;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ class RealmConnection : public NetClient {
|
|||
void SetSelectedRealm(uint32_t a2, uint32_t a3, uint32_t a4);
|
||||
void RequestCharacterEnum();
|
||||
void RequestCharacterLogin(uint64_t id);
|
||||
int32_t GetExpansionLevel() const;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue