mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 16:52:45 +03:00
feat(Login): add IsLoggedOn method
This commit is contained in:
parent
56aad5b60f
commit
0c696832ca
@ -13,6 +13,10 @@ bool Login::IsReconnect() {
|
||||
return this->m_reconnect;
|
||||
}
|
||||
|
||||
bool Login::IsLoggedOn() {
|
||||
return this->m_loggedOn;
|
||||
}
|
||||
|
||||
bool Login::OnlineIdle() {
|
||||
// TODO
|
||||
|
||||
|
||||
@ -22,6 +22,7 @@ class Login : public Grunt::ClientResponse {
|
||||
virtual bool OnlineIdle();
|
||||
virtual void RealmListResult(CDataStore* msg);
|
||||
virtual bool IsReconnect();
|
||||
virtual bool IsLoggedOn();
|
||||
|
||||
// Member functions
|
||||
void SetLogonCreds(const char* accountName, const char* password);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user