feat(net): handle SMSG_AUTH_RESPONSE

This commit is contained in:
fallenoak 2023-04-03 18:00:18 -05:00
parent 6479dcaecf
commit e18afec28d
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
5 changed files with 115 additions and 2 deletions

View file

@ -0,0 +1,5 @@
#include "client/ClientRealmResponseAdapter.hpp"
void ClientRealmResponseAdapter::HandleAuthResponse(RealmConnection* connection, uint8_t authResult) {
// TODO
}

View file

@ -5,6 +5,9 @@
class ClientRealmResponseAdapter : public RealmResponse {
public:
// Virtual member functions
virtual void HandleAuthResponse(RealmConnection* connection, uint8_t authResult);
virtual void GameServerResult(RealmConnection* connection, const char* a2, const char* a3, const char* a4) {};
};
#endif